Trixsec
501 subscribers
25 photos
3 videos
10 files
79 links
Creating Own Tools
#Hacktheplanet
Download Telegram
https://github.com/TrixSec/waymap

v2.4.1
added new scanning module: --scan crlf(Carriage Return and Line Feed)
added custom threading count in crlf
added a more advanced crawler to waymap can crawl at any depth
added custom threading in crawling
added new user-agents in ua.txt
fixed major bugs/errors

Give a Star to repo if you haven't yet
๐Ÿ˜˜2๐Ÿ‘Œ1
checkurl.py
2.6 KB
Mass url checker

Check / seperate/ save url with code 200

Useful in cracking logs
CVE-2019-16172:

A stored XSS vulnerability in LimeSurvey allows attackers to execute arbitrary JavaScript by exploiting improperly validated user input when creating survey groups.

Scanner: CVE-2019-16172
Forwarded from NOOBsec
๐Ÿ˜˜3
http.txt
55 B
Http proxies
proxychecker.py
2.3 KB
Fast proxy checker

Save proxy in proxy.txt before starting
Output will be in http.txt
๐Ÿ”ฅ4
checkurls.py
3.3 KB
Mass url checker V2

#threading
โœ1๐Ÿ”ฅ1
Author and Contributions
Author: Trix Cyrus
Developed by: TrixSec Org
Current Version: v1.1
Maintained: Yes


Hash-Hammer ๐Ÿ”จ
Hash-Hammer is a multi-threaded hash-cracking tool designed for security testing and educational purposes.It supports both brute-force and dictionary-based password cracking modes.

Features
- Multi-threaded: Speed up hash cracking by using multiple threads.
- Two cracking modes:
- Brute-force Mode: Generate password combinations based on a defined character set.
- Dictionary/Password File Mode: Use a custom password file to find the matching hash.
- Real-time statistics: Display checked passwords, remaining attempts, and speed.

-- Currently Supported Hash Algorithm
- MD5

## Version 1.1
- Added Hash Algo - MD5
- Multi Threading
- Dictonary Based Cracking
- Bruteforce Based Cracking

--------- More - Updates - Soon ----------

Usage
Clone the Repository

git clone https://github.com/TrixSec/Hash-Hammer.git

cd Hash-Hammer



Compile
Youโ€™ll need to have OpenSSL and GCC installed to compile the tool. To compile:

gcc -o hash-hammer hash_hammer.c -lssl -lcrypto -pthread


Run
To execute the tool:

./hash-hammer


Requirements
- Libraries: OpenSSL (for MD5 hashing), pthread (for multi-threading)
- Compiler: GCC or compatible C compiler

Disclaimer
This tool is intended for educational purposes and authorized security testing only. Unauthorized use on third-party systems is illegal and punishable by law.
Destructive Linux Commands

1. :
> /dev/sda


This command directly writes empty data to the specified drive (/dev/sda), completely erasing everything on it. Similar to dd but potentially faster at causing damage.

2.
mv / /dev/null


Redirects the root directory (/) to /dev/null, effectively deleting the entire filesystem by moving it to a "black hole."

3.
chmod -R 000 /


This recursively sets all files and directories in the root directory to have no permissions (000), making everything on the system inaccessible, including essential system files.

4.
chown -R nobody:nogroup /


Changes ownership of every file on the system to nobody:nogroup, which can render the entire system unstable and unusable, as permissions would be invalidated.

5.
find / -type f -exec shred -n 5 -z -u {} \;


This command locates every file (-type f) on the system and overwrites each file with random data five times (-n 5), then zeroes out (-z) and deletes (-u) each file. This is almost impossible to recover from.

6.
yes > /dev/sda


Continuously writes the text โ€œyesโ€ to the specified drive until itโ€™s full, resulting in data corruption and data loss on that drive.

7.
rm -rf --no-preserve-root /


Similar to rm -rf /, but the --no-preserve-root option disables the failsafe that usually prevents the deletion of the root directory.

8.
iptables -F && iptables -X && iptables -t nat -F && iptables -t nat -X


Flushes all firewall rules and policies, leaving the system vulnerable to external attacks with no network filtering or protections.

9.
echo 1 > /proc/sys/kernel/panic


Modifies the kernel to cause an immediate kernel panic, forcing the system to crash and restart. This doesnโ€™t delete data but can lead to an unstable system and possible data corruption.
10.
rm -rf /


This command recursively removes (-r) all files (-f) starting from the root directory /, effectively deleting everything on the system.

11.
:(){ :|: & };:


Known as a "fork bomb," this command creates a large number of processes very quickly, consuming system resources and causing the system to freeze or crash.

12.
mkfs.ext4 /dev/sda


This command reformats the drive specified (in this case, /dev/sda). Running this on an active partition, such as your root or home partition, will erase all data on that drive.

13.
dd if=/dev/zero of=/dev/sda


This command overwrites the specified drive (/dev/sda) with zeros, effectively wiping all data on it.

14.
> filename


This command replaces the contents of the specified file (filename) with nothing, effectively deleting its content. If run on critical system files, it could render the system unusable.
๐Ÿ‘1
๐Ÿฅฐ1
---

๐Ÿš€ Introducing IPVulnScout!๐Ÿš€

Hey everyone! Iโ€™m excited to share my latest project, IPVulnScout. This tool helps you quickly check for vulnerabilities in IP addresses and fetch detailed information about CVEs.

๐Ÿ” Features:
- IP Vulnerability Checking
- CVE Information Retrieval

๐Ÿ”ง Get started by cloning the repo and installing the required packages. Check it out here: IPVulnScout

Your feedback is appreciated! Letโ€™s enhance our security together! ๐Ÿ”

---

Tap to get tool
New Update v1.1

Tap: Repo

Get open ports info
New update v5.1.1
Check Readme.md for details