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
| 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 |
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
| .NET compiler + {SmartAssembly} Obfuscator | |
| Microsoft Visual C# / Basic.NET / MS Visual Basic 2005 [ Obfus/Crypted ] |
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
| isolation.tools.copy.disable = "FALSE" | |
| isolation.tools.paste.disable = "FALSE" | |
| bios.bootDelay = "2000" |
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
| 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 |
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
| # 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 "" |
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
| 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() |
OlderNewer