- Install the Apache web server
This file contains 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
// CLR Hosting, by [email protected] | |
// | |
// it's a new edition rewrite for .NET(4+) COM interface | |
// original from github.com/etormadiv/HostingCLR | |
// & blog.xpnsec.com/hiding-your-dotnet-etw | |
// | |
// this PoC supports the following .NET entry: | |
// >>>> static void Main(string[] args); | |
// | |
#include <stdio.h> |
This file contains 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
[ColorEffects:Disabled] | |
Color=56,56,56 | |
ColorAmount=0 | |
ColorEffect=0 | |
ContrastAmount=0.65 | |
ContrastEffect=1 | |
IntensityAmount=0.1 | |
IntensityEffect=2 | |
[ColorEffects:Inactive] |
This file contains 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
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'mail', require: 'mail' | |
gem 'json', require: 'json' | |
gem 'optparse', require: true | |
gem 'ostruct', require: true | |
end |
This file contains 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 ruby | |
# | |
# Author: Sabri (@KINGSABRI) | |
# | |
require 'webrick' | |
require 'webrick/https' | |
require 'optparse' | |
options = { | |
ip: '0.0.0.0', |
This file contains 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
{ | |
"segments": [ | |
"virtual_env", | |
"username", | |
"ssh", | |
"cwd", | |
"git", | |
"hg", | |
"jobs", | |
"set_term_title", |
This file contains 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
#include <Windows.h> | |
#include <ntdef.h> | |
#include <cstdint> | |
#include <cassert> | |
#include <cstring> | |
#include <cstdio> | |
typedef enum | |
{ |
This file contains 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
/admin | |
/admin-console | |
/docs/ | |
/examples | |
/examples/jsp/index.html | |
/examples/jsp/snp/snoop.jsp | |
/examples/jsp/source.jsp | |
/examples/servlet/HelloWorldExample | |
/examples/servlet/SnoopServlet | |
/examples/servlet/TroubleShooter |
This file contains 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
Clear-Host | |
Write-Host "1 -> Never check for updates" | |
Write-Host "2 -> Disable Windiws Firewall" | |
Write-Host "3 -> Disable Windiws Defender" | |
Write-Host "Enter any character to exit" | |
Write-Host | |
switch(Read-Host "Choose Window Update Settings"){ |
This file contains 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 crystal | |
# | |
# Author: KING SABRI | @KINGSABRI | |
# Description: Base64 encoding all characters in a given payload | |
# Requirements: None | |
# | |
require "json" | |
require "base64" | |
json = JSON.parse(ARGV[0]) |
NewerOlder