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
Hacking Articles Tips Tricks Videos Tutorials
Black Hat Ethical Hacking Recon Tool: ReconSpider Recon Tool: ReconSpiderPost Views: 5 Premium Contenthttps://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/Patreon.png Subscribe to Patreon to watch this episode. Reading Time: 3 Minutes ReconS…
n result in not showing the expected output or it may show errors.

You need to create the account and get the API Keys from the following websites.

* Shodan.iohttps://developer.shodan.io/api
* NumVerify – https://numverify.com/documentation
* IP Stack – https://ipstack.com/documentation
* Google Maps – https://developers.google.com/maps/documentation/places/web-service/get-api-key Usage (Click here to see the full usage)ReconSpider Full Wiki and How-to GuidePlease go through the ReconSpider Wiki Guide for a detailed explanation of each and every option and feature.
Clone the repo from here: GitHub Link
Trending: How do QR Codes work and how criminal hackers use them to generate phishing attacks – Demo https://www.blackhatethicalhacking.com/wp-content/uploads/2022/03/Merch.png Recent Tools* https://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/Social-Hunter-300x150.png OSINT Tool: Social HunterSeptember 22, 2022
Reading Time: 2 minutes

* https://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/dnsReaper-300x150.png Offensive Security Tool: dnsReaperSeptember 16, 2022
Reading Time: 4 minutes

* https://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/fuxploider-300x150.png Offensive Security Tool: fuxploiderSeptember 9, 2022
Reading Time: 2 minutes

* https://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/ZenBuster-300x150.png Recon Tool: ZenBusterSeptember 2, 2022
Reading Time: 4 minutes https://www.blackhatethicalhacking.com/wp-content/uploads/2022/06/OffSec-Course.png Offensive Security & Ethical Hacking CourseBegin the learning curve of hacking now!
The post Recon Tool: ReconSpider first appeared on Black Hat Ethical Hacking.

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
SCodeScanner - Stands For Source Code Scanner Where The User Can Scans The Source Code For Finding The Critical Vulnerabilities

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiB8XwFXLSZNCYm28Vi0TzfVTKdKOKVeDzD7IyCLkQNpElSpPzYL9MQj6JKtR4bIELZZuEfcz9UHAB3qsV7I1AD4_A7LaPWAIqX40BxcMTWJBWLa8D0du4mxfTAugKevmd_5to_4cxCvRTtu4xOPHlgs0yoszqzzyIez5ZAza4O0OEcLsOA2YiRnoOtKA/w640-h344/SCodeScanner.png
SCodeScanner stands for Source Code scanner where the user can scans the source code for finding the Critical Vulnerabilities. The main objective for this scanner is to find the vulnerabilities inside the source code before code gets published in Prod.
Features

1. Supported PHP Language

2. Supported YAML Language

3. Pass results to bug tracking services like Jira also Slack (Sending files to group to multiple people at once).

4. Gives results in JSON format, which can easily be used to any other program.
5. Works with Rules. We only need to create some rules which the target rule is not present in php/yaml directory.
6. Rules that can scan advance patterns

Achievements

SCodeScanner received 5 CVEs for finding vulnerabilities in multiple CMS plugins.

* CVE-2022-1465
* CVE-2022-1474
* CVE-2022-1527
* CVE-2022-1532
* CVE-2022-1604

How to run?

* Download the repository -

* Run pip3 install -r requirements.txt

* And run python3 scscanner.py --help
Feedback/Imporvements

I would love to hear your feedback on this tool. Open issues if you found any. And open PR request if you have something.

Contact

Utkarsh Agrawal
Website
Download Scodescanner

___________________________
@hacking_Attack
@Hacking_Video
Kali Linux Tutorials
CATS : REST API Fuzzer And Negative Testing Tool For OpenAPI Endpoints

CATS , REST API fuzzer and negative testing tool. Run thousands of self-healing API tests within minutes with no coding effort!

* Comprehensive: tests are generated automatically based on a large number scenarios and cover every field and header
* Intelligent: tests are generated based on data types and constraints; each Fuzzer has specific expectations depending on the scenario under test
* Highly Configurable: high amount of customization: you can filter specific Fuzzers, HTTP response codes, HTTP methods, request paths, provide business context and a lot more
* Self-Healing: as tests are generated, any OpenAPI spec change is picked up automatically
* Simple to Learn: flat learning curve, with intuitive configuration and syntax
* Fast: automatic process for write, run and report tests which covers thousands of scenarios within minutes OverviewBy using a simple and minimal syntax, with a flat learning curve, CATS (Contract Auto-generated Tests for Swagger) enables you to generate thousands of API tests within minutes with no coding effort. All tests are generated, run and reported automatically based on a pre-defined set of 93 Fuzzers. The Fuzzers cover a wide range of boundary testing and negative scenarios from fully random large Unicode values to well crafted, context dependant values based on the request data types and constraints. Even more, you can leverage the fact that CATS generates request payloads dynamically and write simple end-to-end functional tests. InstallationHomebrewbrew tap endava/tap
brew install cats ManualCATS is bundled both as an executable JAR or a native binary. The native binaries do not need Java installed.

After downloading your OS native binary, you can add it in PATH so that you can execute it as any other command line tool:

sudo cp cats /usr/local/bin/cats

You can also get autocomplete by downloading the cats_autocomplete script and do:

source cats_autocomplete

To get persistent autocomplete, add the above line in ~/.zshrcor ./bashrc, but make sure you put the fully qualified path for the cats_autocompletescript.

You can also check the cats_autocompletesource for alternative setup.

There is no native binary for Windows, but you can use the uberjar version. This requires Java 17+ to be installed.

You can run it as java -jar cats.jar.

Head to the releases page to download the latest version: https://github.com/Endava/cats/releases. BuildYou can build CATS from sources on you local box. You need Java 17+. Maven is already bundled.

Before running the first build, please make sure you do a ./mvnw clean. CATS uses a fork ok OKHttpClientwhich will install locally under the 4.10.0-CATSversion, so don’t worry about overriding the official versions.

You can use the following Maven command to build the project: ./mvnw package -Dquarkus.package.type=uber-jarYou will end up with a cats-runner.jarin the targetfolder. You can run it wih java -jar cats-runner.jar ....

You can also build native images using a GraalVM Java version. ./mvnw package -PnativeNote: You will need to configure Maven with a Github PAT with read-packagesscope to get some dependencies for the build. Notes on Unit TestsYou may see some ERRORlog messages while running the Unit Tests. Those are expected behaviour for testing the negative scenarios of the Fuzzers. Running CATSBlackbox modeBlackbox mode means that CATS doesn’t need any specific context. You just need to provide the service URL, the OpenAPI spec and most probably authentication headers.

cats –contract=openapi.yaml –server=http://localhost:8080 –headers=headers.yml –bla[...]

___________________________
@hacking_Attack
@Hacking_Video