Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
SQLite injection "or" "and" "--" "like" "=" bypass
https://www.reddit.com/r/Pentesting/comments/n6ef0q/sqlite_injection_or_and_like_bypass/

I am doing a ctf, I wanna login to a website by doing sql injection. The db is sqlite3 and i cannot use any of the words from above. I tried encoding it into hex and using comments in between. Does anyone have some kind of advice for me on how I can bypass the filter? submitted by /u/b9a4c81f36 (https://www.reddit.com/user/b9a4c81f36)
[link] (https://www.reddit.com/r/Pentesting/comments/n6ef0q/sqlite_injection_or_and_like_bypass/) [comments] (https://www.reddit.com/r/Pentesting/comments/n6ef0q/sqlite_injection_or_and_like_bypass/)

___________________________
@hacking_Attack
@Hacking_Video
Is the Web Application Hacker's Handbook still relevant?
https://www.reddit.com/r/Pentesting/comments/n6hyq9/is_the_web_application_hackers_handbook_still/

Python Dev breaking into pentesting here, and I can't help but wonder if a book written years ago can still get you actionable results. I have zero problems committing myself to reading it - I just want to know that there are others out there who continue to find the investment worthwhile. submitted by /u/K3ystr0k3 (https://www.reddit.com/user/K3ystr0k3)
[link] (https://www.reddit.com/r/Pentesting/comments/n6hyq9/is_the_web_application_hackers_handbook_still/) [comments] (https://www.reddit.com/r/Pentesting/comments/n6hyq9/is_the_web_application_hackers_handbook_still/)

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Recovery Software

Okay I’ve spent the last 2 hours trying so hard to recover my deleted messages on my iPhone using recovery softwares, I’ve grown so desperate that I paid for one, but realized it made no difference. Am I just blinded by my desperation to see that every one of these is a scam? Or is there any softwares that’ll help me out? Not looking for anything free that’ll for sure fail, if you can promise me success I’ll pay for it no doubt.

submitted by /u/astrodaren
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Pentesting ISP 101 | How I hacked & fixed My ISP

This blog is about the misconfiguration issue in the ISP I was using. While working on Shodan, I discovered that ISP has left WiFi…Continue reading on InfoSec Write-ups »
Read more...
Features:
Scan a mounted filesystem (https://www.kitploit.com/search/label/Filesystem) for threats right away Or gather a system baseline before an incident, for extra threat hunting ability Can be used before, during or after an incident For one to many workstations Scans the MFT, bypassing file permissions, file locks or OS file protections/hiding/shadowing Up to 51 different properties gathered for every file Scan results go into an SQL table for later searching, aggregating results over many scans and/or many machines, and historical or retrospective analysis Leverage the power of SQL to search file systems, query file properties, answer complex or high-level questions, and hunt for threats or indicators of compromise
Requirements:
.NET Framework v4.8 Local or remote SQL database with read/write/create access. Visual studio (if you wish to compile the C# code) Access to the internet (or else how did you get this code??? Also for nuget packages...) Basic knowlege of SQL
Hunt for viruses, malware, and APTs on (multiple) file systems using by writing queries in SQL.
Allow me to elaborate... You start with a disk or disk images that are potentially dirty with malware, viruses, APT's (advanced persistent threats) or the like, and then scan them with this tool. (Optionally, and assuming you have the wisdom and foresight to do so, you may wish to scan a known good baseline disk image with this tool first (or later--doesn't matter). This is certainly not necessary, but can only serve to aid you.) The forensics-level scanning portion of this tool collects a bunch of properties about each file in a file system (or an image(s) of one), and places these properties in a SQL relational database table. The secret sauce comes from being able to threat hunt, investigate, or ask questions about the data through the use of queries, in the language of SQL, against the database that is created. A key feature here was NOT inventing a proprietary query language. If you know SQL, and how to click a button, then you already know how to use this tool like a boss. Even if you don't, this concept is powerful enough that canned queries (see below) will get you a lot of mileage.
Forensics-level scanning.
Firstly, the tool creates an entry in the database for each record found in the MFT (master file table--its how NTFS does its record keeping). This bypasses file security permissions, file hiding, stealth or obfuscation (https://www.kitploit.com/search/label/Obfuscation) techniques, file deletion, or timestamp tampering. These techniques will not prevent the file from being scanned and catalogued. The bytes of the file are read from the MFT and as many data points as possible are taken from the bytes of the file read from the MFT before attempting to access any data points using the higher-level OS API calls.
Rich, high-level data analytics.
After the MFT and forensics-level data is secured, operating-system-level properties, data and meta-data available about each file is collected and augments each entry created from the MFT entry. As a result of this, even if the file or its properties from the Operating System API or the dotnet framework cannot be accessed due to file permissions (ACL), file locks (is in use), disk corruption, a zero-byte-length file, or any of the various other reasons, the file's existence will still be recorded, logged and tracked. The entry, however, will simply not contain the information about it that was not accessible to the operating system. Up to 51 different data points may be collected for every file.

___________________________
@hacking_Attack
@Hacking_Video