You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/readme.md
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,30 @@
1
+
##
2
+
3
+
* Create a text file named commands.txt with the PowerShell commands you want to execute. Each command should be on a new line. For example:
4
+
```
5
+
Get-Process
6
+
Get-Service
7
+
Get-EventLog -LogName Application -Newest 10
8
+
```
9
+
10
+
* If you haven't already, install dialog in Termux:
11
+
```
12
+
pkg install dialog
13
+
```
14
+
15
+
* If you haven't already, you need to install netcat to send and receive data over the network:
16
+
```
17
+
pkg install netcat
18
+
```
19
+
20
+
* Make sure the script is executable:
21
+
```
22
+
chmod +x send_commands.sh
23
+
```
24
+
25
+
*
26
+
27
+
1
28
## This is an example of what you can do with this. In this example i have made something like a remote bomb, when pinged it will execute malitiouse code to destroy an operating systems infistructure and data (is still being editied)
0 commit comments