Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
What is an Authenticator app for 2FA?
https://cdn-images-1.medium.com/max/1200/0*GUAY0xWHD5u0TPZx.jpeg
When you create an online account, you are often required to set up a Password.
Continue reading on System Weakness »
What is an Authenticator app for 2FA?
https://cdn-images-1.medium.com/max/1200/0*GUAY0xWHD5u0TPZx.jpeg
When you create an online account, you are often required to set up a Password.
Continue reading on System Weakness »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
[project]Bypass Firewalls using Various Evasion Techniques
https://cdn-images-1.medium.com/max/600/1*6tOx9lmygwvTC-PL_2vhaQ.png
Bypass windows firewall using Nmap evasion techniques
Continue reading on Medium »
[project]Bypass Firewalls using Various Evasion Techniques
https://cdn-images-1.medium.com/max/600/1*6tOx9lmygwvTC-PL_2vhaQ.png
Bypass windows firewall using Nmap evasion techniques
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Is it possible to cause a blackout by hacking 250k electric cars?
https://cdn-images-1.medium.com/max/800/0*P0jlipIYYD3KlspC.jpg
Detailed & helpful guide about electric vehicles for cyber fans
Continue reading on Medium »
Is it possible to cause a blackout by hacking 250k electric cars?
https://cdn-images-1.medium.com/max/800/0*P0jlipIYYD3KlspC.jpg
Detailed & helpful guide about electric vehicles for cyber fans
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
5 Side Hustles I’m Working On in 2022
https://cdn-images-1.medium.com/max/2600/1*orAhFe7lnIs8FIMtgmSUkg.jpeg
2022 will be a year of many projects for many creators, and I am no different in the face of it all. Here is what I am working on.
Continue reading on Criating on Demand »
5 Side Hustles I’m Working On in 2022
https://cdn-images-1.medium.com/max/2600/1*orAhFe7lnIs8FIMtgmSUkg.jpeg
2022 will be a year of many projects for many creators, and I am no different in the face of it all. Here is what I am working on.
Continue reading on Criating on Demand »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to use in-built docker tools for reconnaissance
https://cdn-images-1.medium.com/max/2600/0*DYw1tecsFw-tTDW5
Detecting container and host environments
Continue reading on Medium »
How to use in-built docker tools for reconnaissance
https://cdn-images-1.medium.com/max/2600/0*DYw1tecsFw-tTDW5
Detecting container and host environments
Continue reading on Medium »
SQLbit - Just Another Script For Automatize Boolean-Based Blind SQL Injections
http://www.kitploit.com/2021/12/sqlbit-just-another-script-for.html
http://www.kitploit.com/2021/12/sqlbit-just-another-script-for.html
A script for automatize boolean-based blind SQL injections.
Works with SQLite (https://www.kitploit.com/search/label/SQLite) at least, supports using cookies.
It uses bitwise comparisons with multithreading (https://www.kitploit.com/search/label/Multithreading) to find cell values instead of binary (https://www.kitploit.com/search/label/Binary) search, which is more efficient.It's able to:Search cell values by columns in a tableSearch characters count in a cells by columns in a tableSearch rows count in a tableThe search algorithm is shown below.
Knowing the name of its column ('sqlite_master' by default in sqlite, for example) and the column name of it ('name' in sqlite) you can find values of every cell in every row. And the fastest algorithm for this is checking the binary values of every character in every cell, which can be perform using multiple threads. Considering this, we can send only 7 requests to get the standard 7-bit letter, and using 1000 threads, we get ~142 letters per moment (it's also worth keeping in mind requests to get the length of a cell value).
Works with SQLite (https://www.kitploit.com/search/label/SQLite) at least, supports using cookies.
It uses bitwise comparisons with multithreading (https://www.kitploit.com/search/label/Multithreading) to find cell values instead of binary (https://www.kitploit.com/search/label/Binary) search, which is more efficient.It's able to:Search cell values by columns in a tableSearch characters count in a cells by columns in a tableSearch rows count in a tableThe search algorithm is shown below.
Knowing the name of its column ('sqlite_master' by default in sqlite, for example) and the column name of it ('name' in sqlite) you can find values of every cell in every row. And the fastest algorithm for this is checking the binary values of every character in every cell, which can be perform using multiple threads. Considering this, we can send only 7 requests to get the standard 7-bit letter, and using 1000 threads, we get ~142 letters per moment (it's also worth keeping in mind requests to get the length of a cell value).
The number of bits need to compare (7 by default for ASCII) and the number of threads can be specified as input data.Installinggit clone https://github.com/Sunlight-Rim/sqlbit.git
pip3 install -r requirements.txt
UsageIt does not accept command line (https://www.kitploit.com/search/label/Command%20Line) arguments, so you can specify data in the config file or at runtime program.python sqlbit.py
pip3 install -r requirements.txt
UsageIt does not accept command line (https://www.kitploit.com/search/label/Command%20Line) arguments, so you can specify data in the config file or at runtime program.python sqlbit.py
Note: please, use it only for your own servers or for the servers of those owners with whom you have agreed in advance.
Download SQLbit (https://github.com/Sunlight-Rim/SQLbit)
Download SQLbit (https://github.com/Sunlight-Rim/SQLbit)