Where To Take Advantage Of Optimized Gaming Performance

0

Last year, we ran an article about ‘How to Improve Gaming Performance on Your PC’. It shared tips on everything for optimising bandwidth, to choosing the right graphics card, to upgrading your computer RAM. To many with more casual interest in the topic, these may seem like fairly involved, technical adjustments to consider. To a growing number of gamers though,...

CTF-Party : A Ruby Library To Enhance & Speed Up Script/Exploit

0

CTF-Party is a library to enhance and speed up script/exploit writing for CTF players (or security researchers, bug bounty hunters, pentesters but mostly focused on CTF) by patching the String class to add a short syntax of usual code patterns. The philosophy is also to keep the library to be pure ruby (no dependencies) and not to re-implement what...

Godehashed : Tool That Uses The Dehashed.Com API To Search For Compromised Assets

0

Godehashed is a golang tool that uses the dehashed.com API to search for compromised assets. Results can then be compiled into a CSV for further analysis. Dehashed API You must supply the tool an api key. See apikey_template.txt for example. Installation To install the tool in CLI run the following command. Your $GOPATH must already be set. go get https://github.com/an00byss/godehashed Usage ./godehashed -s email -i apikey.txt...

ProxyLogon : PoC Exploit for Microsoft Exchange

0

ProxyLogon is a tool for PoC exploit for Microsoft exchange. How to use? python proxylogon.py <name or IP of server> <user@fqdn> Example python proxylogon.py primary administrator@lab.local If successful you will be dropped into a webshell. exit or quit to escape from the webshell (or ctrl+c) By default, it will create a file test.aspx. This can be changed. Download

Netmap.Js : Fast Browser-Based Network Discovery Module

0

netmap.js provides browser-based host discovery and port scanning capabilities to allow you to map website visitors' networks. It's quite fast, making use of es6-promise-pool to efficiently run the maximum number of concurrent connections browsers will allow. Motivation I needed a browser-based port scanner for an idea I was working on. I thought it would be a simple matter of importing an existing...

Subcert : Finds All The Subdomains From Certificate Transparency Logs

0

Subcert is a subdomain enumeration tool, that finds all the valid subdomains from certificate transparency logs. Setup Step 1: Install Python 3 apt-get install python3-pip Step 2: Clone the Repository git clone https://github.com/A3h1nt/Subcert.git Step 3: Install Dependencies pip3 install -r requirements.txt Step 4: Move the Directory to /opt mv subcert /opt/ Step 5: Add an alias in .bashrc to run the script from anywhere alias subcert="python3...

Mole : A Framework For Identifying & Exploiting Out-Of-Band Application Vulnerabilities

0

Mole is a framework for identifying and exploiting out-of-band (OOB) vulnerabilities. Installation & Setup Mole Install Python >= 3.6 virtualenv -p /usr/bin/python3 venvsource venv/bin/activate./venv/bin/pip3 install -r requirements.txtgit submodule update --init --recursive Set an API key in config.yml (must be the same for the client and server) DNS Configuration You'll need to configure the DNS records in your registrar to point to your mole server. Minimally, you'll...

Invoke SocksProxy : Socks Proxy & Reverse Socks Server Using Powershell

0

Invoke SocksProxy is a tool that creates a local or "reverse" Socks proxy using powershell. The local proxy is a simple Socks 4/5 proxy. The reverse proxy creates a tcp tunnel by initiating outbond SSL connections that can go through the system's proxy. The tunnel can then be used as a socks proxy on the remote host to pivot into...

Reverse Shell Generator : Hosted Reverse Shell Generator With A Ton Of Functionality

0

Hosted Reverse Shell generator with a ton of functionality. Features Generate common listeners and reverse shellsRaw mode to cURL shells to your machine.Button to increment the listening port number by 1URI and Base64 encodingLocalStorage to persist your configurationDark and Light Modes Dev It's recommended to use the netlify dev command if you're wanting to modify any of the server functions, such as...

OffensivePipeline : Tool To Download, Compile & Obfuscate C# Tools For Red Team Exercises

0

OffensivePipeline allows to download, compile (without Visual Studio) and obfuscate C# tools for Red Team exercises. It downloads the tool from the git repository, then compiles it with msbuild and finally obfuscates it with ConfuserEx. Examples List all tools: OffensivePipeline.exe list Build all tools: OffensivePipeline.exe all Build a tool OffensivePipeline.exe t toolName Add New Tools The scripts for downloading the tools are in the Tools folder...