-->

Ad Code

HOW TO USE ATTITINY85 DIGISPARK IN 2021|| BUY THE BEST DGISPARK|| WITH VIDEO GUIDE IN 2021

 

DIGISPARK

 

HOW TO USE  ATTITINY85 DIGISPARK IN 2021|| BUY THE BEST DGISPARK|| WITH VIDEO GUIDE IN 2021
source-tindie.com

                                     

Hii guys this is TechWiki again with a new topic. This topic is for everyone those who are interested in tech and technology.

In this topic we will know about DIGISPARK and also how to use it and do some interesting hacks.

So, without any further delay let’s get started-----

 WHAT IS ATTITNY85 DIGISPARK

Generally Attitiny85 Digispark is an Arduino development board. It is used to make the autorun codes or scripts. It is famous in the HACKING world because it works as the RUBBER DUCKY. I hope you all must be knowing about it is also very popular hardware used in hacking.

Here, we are not talking about RUBBER DUCKY we are here for our DIGISPARK. It is very cheap in comparison to RUBBERY DUCKY. This we can also called as the cheap RUBBER DUCKY. It just only work like it and it cannot have so much of capacity as DUCKY. In Rubber Ducky we can run multiple number of scripts at a time but in Digispark we can’t do that.

 

BUY THE BEST AND CHEAP DIGISPRK HERE:-

  1. https://amzn.to/3ds3KHK
  2. https://amzn.to/3sxTrpS
  3. https://amzn.to/2QzaWc

BUY THE BEST RUBBER DUCKY HERE:-

  1. https://amzn.to/3tG6pTu
  2. https://amzn.to/3tG6pTu
  3. https://amzn.to/3tG6pTu

 

 HARDWARE REQUIREMENTS:-

· ATTITINY 85 DIGISPARK

·  Also read: -

1.     What is Ethical Hacking and Types of Hacker

2.     How to install windows subsystem for Linux on windows in 2022

3.     Is shopping from Dark Web Safe or Not in 2022

4.     Go-Daddy E-mail hacked today Data Breach 2021 GoDaddy

5.     Top 8 Apps infected by Joker Malware, remove them right now



And a system or LAPTOP for testing

So, guys after having all these requirements we can begin our journey, but as usual please follow me by clicking the FOLLOW button given in the sidebar or under the three lines in the HOME page.

Just follow the steps:---

1. Buy the best ATTITINY85 DIGISPARK by clicking here.

2. Connect it to the system. After the installation of its drivers.

3. Download the ARDUINO IDE software for windows as we are using windows system.

4. Open the software.

5. Go to the tools option then select boards option.

6. It will give you some Arduino boards but you will only select the “DIGISPARK(default-16.5mhz)”, this our board.

7. Then our set up is over now, just we have to test it.

8. For testing there some examples in the ARDUINO IDE, just open the software again and copy paste the below given commands

// the setup function runs once when you press reset or power the board

void setup() {

  // initialize digital pin LED_BUILTIN as an output.

  pinMode(100, OUTPUT);

}

 

// the loop function runs over and over again forever

void loop() {

  digitalWrite(1, HIGH);   // turn the LED on (HIGH is the voltage level)

  delay(100);                       // wait for a second

  digitalWrite(1, HIGH);    // turn the LED off by making the voltage LOW

  delay(100);                       // wait for a second

}

 

This will basically is an example of blinking of the LED of our Arduino board, either fast or slow.

9.  You can analyze that by pasting the command in the software and then click on the tick mark sign on the top and after the compilation of the codes you can click on the arrow sign just beside the first sign.

10. After that at the bottom you will see a black small screen there it will say you that you have 60 seconds to connect your device.

11. At that time you need to connect your ARDUINO board, it will automatically upload that script to the device and will give you a message of “successful”. Then unplug your device.

12. Reconnect it and it will start blinking according to the time and the commands given in that.

So, friends this was the simple example for testing. We should further move to some other simple and daring  DIGI HACKS.

Guys in this example we will change the system wallpaper with the present screen open in it and the person will able to open any of the application present on the desktop.

Don’t worry I will tell you all how to fix it after testing.




So, let’s begin…

  1.    Open the ARDUINO IDE software.
  2.  After that click on file option in the top and click on new.
  3.  Then press “CTRL+A” and hit enter.
  4. After that copy-paste the below given codes:-

//This DigiKeyboard Script takes a screenshot of the desktop, sets it as the wallpaper and hides the desktop icons.

//Work with Windows XP(?)/Vista(?)/7/8/8.1/10 etc.

 

#include "DigiKeyboard.h"

void setup() {

  //empty

}

void loop() {

  DigiKeyboard.sendKeyStroke(0);

  DigiKeyboard.sendKeyStroke(KEY_D, MOD_GUI_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(70, MOD_ALT_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_R, MOD_GUI_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.print("mspaint");

  DigiKeyboard.sendKeyStroke(KEY_ENTER);

  DigiKeyboard.delay(800);

  DigiKeyboard.sendKeyStroke(KEY_V, MOD_CONTROL_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_S, MOD_CONTROL_LEFT);

  DigiKeyboard.delay(600);

  DigiKeyboard.print("%USERPROFILE%\\wall.jpg");

  DigiKeyboard.sendKeyStroke(KEY_ENTER);

  DigiKeyboard.delay(600);

  DigiKeyboard.sendKeyStroke(KEY_F, MOD_ALT_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_K);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_F);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_F, MOD_ALT_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_X);

  DigiKeyboard.delay(600);

  DigiKeyboard.sendKeyStroke(KEY_D, MOD_GUI_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_F10, MOD_SHIFT_LEFT);

  DigiKeyboard.delay(500);

  DigiKeyboard.sendKeyStroke(KEY_V);

  DigiKeyboard.delay(200);

  DigiKeyboard.sendKeyStroke(81);

  DigiKeyboard.delay(200);

  DigiKeyboard.sendKeyStroke(81);

  DigiKeyboard.delay(200);

  DigiKeyboard.sendKeyStroke(81);

  DigiKeyboard.delay(200);

  DigiKeyboard.sendKeyStroke(81);

  DigiKeyboard.delay(200);

  DigiKeyboard.sendKeyStroke(81);

  DigiKeyboard.sendKeyStroke(KEY_ENTER);

  for(;;){ /*empty*/ }

}

 After pasting  verify it by clicking on the tick mark at the top and it will verify your code.

·    After verification click on arrow mark just beside it and in the bottom it will tell you to connect your device in 60 seconds then connect the device. After the competition unplug it.

·    Then reconnect your device, afer few seconds you will see that its process has been started and in the further few seconds it will change your wallpaper and you won’t be able to open any of the application.

So, now I will tell you all that how you can fix it just follow the given steps:-

  •      Press “WINDOWS KEY +E”.
  •      Then go to “Quick Access”.
  •      There you will see an image with the name “WALL.JPG”.
  •       Delete that image.
  •       Then set wallpaper whichever you want. That’s it.

 

So, friends I hope so now you all must have understood about the use of this device in hacking. You can buy the best DIGISPARK from the above given links and also go for the best RUBBER DUCKY.

 I hope that you all have must like this article and I  also hope that you all will give me a positive comments that will motivate me to bring more articles related to TECH .


Be with TECHWIKI for latest updates. For more post please visit our blog's home page, click here.


Our latest posts---


CLICK HERE FOR OUR LATEST POST, ON MR ROBOT.

CLICK HERE FOR OUR LATEST POST, ON MBR VS GPT.

PLEASE VISIT OUR YOUTUBE CHANNEL,CLICK HERE

                  

                   THANK YOU FOR YOUR VALUABLE TIME!!!

 

 

 

Post a Comment

0 Comments