Skip to content
View chosenonehacks's full-sized avatar
🌴
On vacation
🌴
On vacation
Block or Report

Block or report chosenonehacks

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. AD-Attack-Defense AD-Attack-Defense Public

    Forked from infosecn1nja/AD-Attack-Defense

    Attack and defend active directory using modern post exploitation adversary tradecraft activity

  2. awesome-pentest-cheat-sheets awesome-pentest-cheat-sheets Public

    Forked from coreb1t/awesome-pentest-cheat-sheets

    Collection of the cheat sheets useful for pentesting

  3. RedTeamCSharpScripts RedTeamCSharpScripts Public

    Forked from Mr-Un1k0d3r/RedTeamCSharpScripts

    C# Script used for Red Team

    C#

  4. SSH-Brute-Forcer SSH-Brute-Forcer Public

    Forked from r4stl1n/SSH-Brute-Forcer

    A Simple Multi-Threaded SSH Brute Forcer

    Python

  5. CSharpTools CSharpTools Public

    Forked from superuser5/CSharpTools

    Collection of useful CSharp Tools for assessments.

  6. Powershell Download File One-Liners Powershell Download File One-Liners
    1
    #PowerShell (any version):
    2
    (New-Object System.Net.WebClient).DownloadFile("https://example.com/archive.zip", "C:\Windows\Temp\archive.zip")  
    3
    
                  
    4
    #PowerShell 4.0 & 5.0:
    5
    Invoke-WebRequest "https://example.com/archive.zip" -OutFile "C:\Windows\Temp\archive.zip"