hacking: security in practice
Best place to find DB leaks?
I want to check breaches against users in my system. I've scavenged a few torrents here and there but never found any site that would be a reliable source. Also I'm particularly interested in the db8151dd breach now and I haven't found that one yet so any help with that would be very much appreciated.
submitted by /u/LuciusBurns
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Best place to find DB leaks?
I want to check breaches against users in my system. I've scavenged a few torrents here and there but never found any site that would be a reliable source. Also I'm particularly interested in the db8151dd breach now and I haven't found that one yet so any help with that would be very much appreciated.
submitted by /u/LuciusBurns
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Reddit
From the hacking community on Reddit
Explore this post and more from the hacking community
hacking: security in practice
Jail time and searches
I was curious to if someone gets caught with the law for hacking can the police legally search your phone for anything?
submitted by /u/hackinghat
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Jail time and searches
I was curious to if someone gets caught with the law for hacking can the police legally search your phone for anything?
submitted by /u/hackinghat
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Jail time and searches
I was curious to if someone gets caught with the law for hacking can the police legally search your phone for anything?
Hacking a NFT Platform
https://medium.com/@mahitman1/hacking-a-nft-platform-56fc59479d3b?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@mahitman1/hacking-a-nft-platform-56fc59479d3b?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Hacking a NFT Platform
Background:
Background:Continue reading on Medium » (https://medium.com/@mahitman1/hacking-a-nft-platform-56fc59479d3b?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Hacking a NFT Platform
Background:
OSIPs - Gathers All Valid IP Addresses From All Text Files From A Directory, And Checks Them Against Whois Database, TOR Relays And Location
http://www.kitploit.com/2022/06/osips-gathers-all-valid-ip-addresses.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/06/osips-gathers-all-valid-ip-addresses.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
OSIPs - Gathers All Valid IP Addresses From All Text Files From A Directory, And Checks Them Against Whois Database, TOR Relays…
This script scans every file from a given folder recursively, extracts every IPv4 and IPv6 address, filters out the public IP addresses and then queries these IPs against TOR relays, WhoIs service and Location service. It outputs 4 files: a CSV file and a JSON file with all details of the IP addresses, a CSV file containing an index of every found IP address and a KML file with all the locations gathered.
Features Parses any number of files in a single run Can also be run for a single input file Extracts all unique valid IPv4 and IPv6 addresses (correctly comparing two addresses, even if they are written differently) Collects publicly available Who Is information for all public IP addresses Queries all public IP addresses against TOR relays Collects geographical location information for all public IP addresses Can be run with command line (https://www.kitploit.com/search/label/Command%20Line) parameters in non-interactive mode for easy integration in other scripts Can be run without parameters and the input values can be provided interactively Allows user to select what steps to perform or exclude Verbosely outputs information to console at every step that it performs Exports all IP addresses details in both a CSV file and a JSON file Exports a KML file that can be easily loaded on top of a map Keeps an index of all found IP addresses in a separate CSV file for easy traceback Pre-requisites: Python 3.9.x Installation To install dependencies, run: pip install -r requirements.txt Compile to executable pip install pyinstaller pyinstaller --onefile osips.py Usage python osips.py [-h] [-F INPUTFOLDER] [-f INPUTFILE] [-p INPUTFILESPATTERN] [-o OUTPUTFILESNAME] [-t {y,n,Y,N}] [-w {y,n,Y,N}] [-l {y,n,Y,N}] [-locationEndpoint LOCATIONENDPOINT] Interactively python osips.py Non-interactively python osips.py --checkTor Y --checkWhoIs Y --checkLocations Y --inputFolder testFolder/ --inputFilesPattern * --outputFilesName test Help python osips.py -h Options -h, --help Show the help message and exit -F INPUTFOLDER, --inputFolder INPUTFOLDER A folder containing files with IPs (log files, email files, text files etc). The IPs can be IPv4 and/or IPv6 and can be placed anywhere in the files. The script will parse every file in the folder and will scan for every IP -f INPUTFILE, --inputFile INPUTFILE Use this option to scan only one file instead of a folder with files. The file can be any text file that contains IP addresses (log files, email files, text files etc.) -p INPUTFILESPATTERN, --inputFilesPattern INPUTFILESPATTERN Enter the pattern to use for the files in the input folder. Example: * for all files, *.txt for text files. -o OUTPUTFILESNAME, --outputFilesName OUTPUTFILESNAME The name for the output files, WITHOUT EXTENSION. 4 different files will be created with this name: a CSV file storing the IP details, an index file storing the IP indexes, a JSON file storing the details and a KML file storing the locations. -t {y,n,Y,N}, --checkTor {y,n,Y,N} Specify if you want to check every public IP address against the TOR relays IP addresses -w {y,n,Y,N}, --checkWhoIs {y,n,Y,N} Specify if you want to extract WhoIs information for every public IP address -l {y,n,Y,N}, --checkLocations {y,n,Y,N} Specify if you want to geocode every public IP address and extract location info using https://reallyfreegeoip.org (https://reallyfreegeoip.org/) -locationEndpoint LOCATIONENDPOINT Default REST endpoint for location is "https://reallyfreegeoip.org/json/". You can specify a diffrent end point, includding placeholder. The result must be in JSON and must include the following fields: country_name, region_code, region_name, city, zip_code, time_zone, latitude, longitude, metro_code Remarks The tool extracts IPv4 addresses only in dot decimal notation (xxx.xxx.xxx.xxx). It doesn’t extract IPv4 addresses in decimal, octal or hexadecimal (https://www.kitploit.com/search/label/Hexadecimal)
___________________________
@hacking_Attack
@Hacking_Video
Features Parses any number of files in a single run Can also be run for a single input file Extracts all unique valid IPv4 and IPv6 addresses (correctly comparing two addresses, even if they are written differently) Collects publicly available Who Is information for all public IP addresses Queries all public IP addresses against TOR relays Collects geographical location information for all public IP addresses Can be run with command line (https://www.kitploit.com/search/label/Command%20Line) parameters in non-interactive mode for easy integration in other scripts Can be run without parameters and the input values can be provided interactively Allows user to select what steps to perform or exclude Verbosely outputs information to console at every step that it performs Exports all IP addresses details in both a CSV file and a JSON file Exports a KML file that can be easily loaded on top of a map Keeps an index of all found IP addresses in a separate CSV file for easy traceback Pre-requisites: Python 3.9.x Installation To install dependencies, run: pip install -r requirements.txt Compile to executable pip install pyinstaller pyinstaller --onefile osips.py Usage python osips.py [-h] [-F INPUTFOLDER] [-f INPUTFILE] [-p INPUTFILESPATTERN] [-o OUTPUTFILESNAME] [-t {y,n,Y,N}] [-w {y,n,Y,N}] [-l {y,n,Y,N}] [-locationEndpoint LOCATIONENDPOINT] Interactively python osips.py Non-interactively python osips.py --checkTor Y --checkWhoIs Y --checkLocations Y --inputFolder testFolder/ --inputFilesPattern * --outputFilesName test Help python osips.py -h Options -h, --help Show the help message and exit -F INPUTFOLDER, --inputFolder INPUTFOLDER A folder containing files with IPs (log files, email files, text files etc). The IPs can be IPv4 and/or IPv6 and can be placed anywhere in the files. The script will parse every file in the folder and will scan for every IP -f INPUTFILE, --inputFile INPUTFILE Use this option to scan only one file instead of a folder with files. The file can be any text file that contains IP addresses (log files, email files, text files etc.) -p INPUTFILESPATTERN, --inputFilesPattern INPUTFILESPATTERN Enter the pattern to use for the files in the input folder. Example: * for all files, *.txt for text files. -o OUTPUTFILESNAME, --outputFilesName OUTPUTFILESNAME The name for the output files, WITHOUT EXTENSION. 4 different files will be created with this name: a CSV file storing the IP details, an index file storing the IP indexes, a JSON file storing the details and a KML file storing the locations. -t {y,n,Y,N}, --checkTor {y,n,Y,N} Specify if you want to check every public IP address against the TOR relays IP addresses -w {y,n,Y,N}, --checkWhoIs {y,n,Y,N} Specify if you want to extract WhoIs information for every public IP address -l {y,n,Y,N}, --checkLocations {y,n,Y,N} Specify if you want to geocode every public IP address and extract location info using https://reallyfreegeoip.org (https://reallyfreegeoip.org/) -locationEndpoint LOCATIONENDPOINT Default REST endpoint for location is "https://reallyfreegeoip.org/json/". You can specify a diffrent end point, includding placeholder. The result must be in JSON and must include the following fields: country_name, region_code, region_name, city, zip_code, time_zone, latitude, longitude, metro_code Remarks The tool extracts IPv4 addresses only in dot decimal notation (xxx.xxx.xxx.xxx). It doesn’t extract IPv4 addresses in decimal, octal or hexadecimal (https://www.kitploit.com/search/label/Hexadecimal)
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Leading source of security tools, hacking tools, cybersecurity and network security. Learn about new tools and updates in one place.
notation because of the high rate of false positives. Depending on the number of public IP addresses found, querying the online services could take a long time. If you are dealing with a lot of IP addresses, it is recommended to first run the tool without querying any of the services and just to extract the IP addresses. After seeing the extraction result, you can calculate an estimate of the total run time of the tool if the services are queried, and eventually choose to query only one or two of the services. TOR relays are checked at the moment of running the tool. Because these IPs are constantly changing, this information may not be very accurate. If a date can also be identified for an IP, then it should be checked against ExoneraTor at this address: https://metrics.torproject.org/exonerator.html Who Is information as well as the location information is gathered live from publicly available services, so the IP addresses are sent to these services. There are downloadable databases that would allow you to collect this information locally, but these downloads are not free and would need constant updates. This tool is not built to work with local databases. The default service used for location gathering (https://www.kitploit.com/search/label/Gathering) is https://reallyfreegeoip.org (https://reallyfreegeoip.org/). This is a free service with no limitations, but it may not be very accurate. You can change this service with another, by using the -locationEndpoint parameter of the script. You can provide another service that takes an IP address as a parameter and returns a JSON response. Use the as a placemark for the IP address location. Examples: https://ipapi.co//json, https://api.ipstack.com/?access_key=ACCESS_KEY, https://freeapi.robtex.com/ipquery/. Please note that some of these other REST endpoints (https://www.kitploit.com/search/label/Endpoints) may not return the required fields and thus will break the script’s logic. In this case, the method named RequestInfoFromRestEndpoint should be modified accordingly. Acknowledgements IPv6 regex -https://gist.github.com/dfee/6ed3a4b05cfe7a6faf40a2102408d5d8 Onion Peeler: Batch Tor Lookup Program - http://az4n6.blogspot.com/2017/02/onion-peeler-batch-tor-lookup-program.html
Download OSIPs (https://github.com/ciprianster/OSIPs)
___________________________
@hacking_Attack
@Hacking_Video
Download OSIPs (https://github.com/ciprianster/OSIPs)
___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
TryHackMe: OWASP Juice Shop — Walkthrough
https://cdn-images-1.medium.com/max/600/1*7M5E_FqQTTstJiUg7eLwVg.png
Hi! I am making these walkthroughs to keep myself motivated to learn cyber security, and ensure that I remember the knowledge gained by…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
TryHackMe: OWASP Juice Shop — Walkthrough
https://cdn-images-1.medium.com/max/600/1*7M5E_FqQTTstJiUg7eLwVg.png
Hi! I am making these walkthroughs to keep myself motivated to learn cyber security, and ensure that I remember the knowledge gained by…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
TryHackMe: OWASP Juice Shop — Walkthrough
Hi! I am making these walkthroughs to keep myself motivated to learn cyber security, and ensure that I remember the knowledge gained by…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How Not to Lose Your Discord Account to a Scammer ♂️
https://cdn-images-1.medium.com/max/2600/1*kgt06EZfM38Hu2_-2jTRAw.png
Article crafted in collaboration with The CIA Officer
Continue reading on PowerInside Security Lab »
___________________________
@hacking_Attack
@Hacking_Video
How Not to Lose Your Discord Account to a Scammer ♂️
https://cdn-images-1.medium.com/max/2600/1*kgt06EZfM38Hu2_-2jTRAw.png
Article crafted in collaboration with The CIA Officer
Continue reading on PowerInside Security Lab »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How Not to Lose Your Discord Account to a Scammer 🦹🏽♂️
Article crafted in collaboration with The CIA Officer