Skip to content

Instantly share code, notes, and snippets.

View PacodiazDG's full-sized avatar
👀
RIP: 0000f43462463970 RSP: 0000f4577f3a4e58 RFLAGS: 00000246

Francisco Javier DLG PacodiazDG

👀
RIP: 0000f43462463970 RSP: 0000f4577f3a4e58 RFLAGS: 00000246
View GitHub Profile
1) HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\BootExecute
2) HKLM\System\CurrentControlSet\Services (start value of 0 indicates kernel drivers, which load before kernel initiation)
3) HKLM\System\CurrentControlSet\Services (start value of 2, auto-start and 3, manual start via SCM)
4) HKLM\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce
5) HKCU\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce
6) HKLM\Software\Microsoft\Windows\CurrentVersion\RunServices
7) HKCU\Software\Microsoft\Windows\CurrentVersion\RunServices
8) HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify
9) HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Userinit
10) HKCU\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\\Shell
.NET compiler + {SmartAssembly} Obfuscator
Microsoft Visual C# / Basic.NET / MS Visual Basic 2005 [ Obfus/Crypted ]
@PacodiazDG
PacodiazDG / gist:9db3fcdda0a734a0c803474de9b6ccf1
Created August 29, 2020 07:18
VMware Player 15 option “guest isolation” missing
isolation.tools.copy.disable = "FALSE"
isolation.tools.paste.disable = "FALSE"
bios.bootDelay = "2000"
git clone https://github.com/stanislav-web/OpenDoor.git
go get https://github.com/OJ/gobuster
go get github.com/saeeddhqan/evine
git clone https://github.com/MonroCoury/admin-panel-finder.git
go get github.com/ffuf/ffuf
@PacodiazDG
PacodiazDG / _config.cfg
Created June 4, 2022 19:16
config.cfg Euro Truck Simulator 2 Default config file
# modified for camera 0
# prism3d variable config data
uset s_init_intro_music_mute "0"
uset s_init_intro_music_volume "0.5"
uset s_init_ui_music_mute "0"
uset s_init_ui_music_volume "0.5"
uset s_init_master_mute "0"
uset s_init_master_volume "0.75"
uset s_output_driver ""
@PacodiazDG
PacodiazDG / Socket client.kt
Created September 17, 2022 23:11
Socket client.kt
val socket = Socket("192.168.1.66", 8083)
val outputStream = socket.getOutputStream()
val dataOutputStream = DataOutputStream(outputStream)
println("Sending string to the ServerSocket")
dataOutputStream.write("CursorSet:0,0".toByteArray())
dataOutputStream.flush() // Send Buffer
val inFromServer = BufferedReader(InputStreamReader(socket.getInputStream()))
val sentence = inFromServer.readLine();
Log.i("TAGSsssss", sentence);
dataOutputStream.close()