Easy to use async directory brute forcing tool with advanced capabilities. Dartbuster is a cross platform tool written in dart with significant performance enhancements that really make it an effective choice over pre-existing tools.
Disclaimer: The author of this tool is not responsible for how you use it and who uses it. You the user are solely responsible for your actions.
The help screen has all the information you'd need, but here are some hopefully useful examples:
Prints help screen
$ dartbuster -hStarts fuzzing the "example.com" website, with 50 threads using wordlist apache-user-enum-1.0.txt
$ dartbuster scan -u https://example.com -T 50 -w apache-user-enum-1.0.txtStarts fuzzing the "example.com" website, with the extensions .pdf, .html, .css
$ dartbuster scan -u https://example.com -e .pdf,.html,.cssPrints built in extension and word lists.
$ dartbuster listPrints built in useragents.
$ dartbuster useragentsA quick little python script that backs up all your discord contacts and servers for you. Discord is a volatile platform where accounts are frequently suspended without reason, if you don't want to randomly lose all your contacts, this tool is a non intrusive way of accomplishing that.
Note project depends on the discord.py package
No download, code is below
Install dependencies:
pip3 install discord.pyTo run the program just copy and paste the code below and run.
import discord, asyncio, datetime client = discord.Client() token = 'INSERT DISCORD TOKEN HERE' now = datetime.datetime.now().date() @client.event async def on_message(message): if message.author == client.user and message.content == '/backup': friends, guilds = client.user.friends, client.guilds with open(f'{now}_friends','w', encoding='UTF-8' ) as f: for x in friends: f.write(f'{x.id} | {x.name}#{x.discriminator}\n') with open(f'{now}_guilds','w') as f: for x in guilds: f.write(f'{x.id} | {x.name}\n') print(f"[*] Backup up {len(friends)} friends and {len(guilds)} guilds") client.run(token,bot=False)Simple python program capable of minifying and getting rid of excess white space within html, css, and js files. Excellent for optimizing websites.
Disclaimer: The author of this tool is not responsible for how you use it and who uses it. You the user are solely responsible for your actions.
The help screen has all the information you'd need, but here are some hopefully useful examples:
Prints help screen
$ minifier -hMinifies an HTML file at /var/www/index.html
$ minifier /var/www/index.htmlMinifies all HTML, CSS, and JS files under /var/www/.
$ minifier -r /var/www/Minifies all HTML, CSS, and JS files under /var/www/ excluding any files that contain "sensitive" in their name.
$ minifier -r /var/www/ -i sensitive