-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuart-exploiter.py
More file actions
183 lines (171 loc) · 5.88 KB
/
uart-exploiter.py
File metadata and controls
183 lines (171 loc) · 5.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#!/usr/bin/python3
# Author: Exploit Security Team
# Name: uart-exploiter
# Web: exploitsecurity.io
# Git Repo: https://github.com/exploitsecurityio/
# Function: Python UART toolkit for Security Researchers. To be used with standard FTDI cable. Interfaces with a connected UART peripheral and can be used for
# - Interactive UART passthrough over FTDI
from pyftdi.ftdi import Ftdi
import pyftdi.serialext
from pyftdi import FtdiLogger
from pyftdi.ftdi import Ftdi
from pyftdi.misc import to_bool
import pyftdi.serialext
from pyftdi.serialext import serial_for_url
import sys
import os
import signal
import threading
from time import sleep
from threading import Thread
from threading import Semaphore
from random import random
import time
global uart_interface
global baud_rate
global clr_cmd
global baudRates
def handler(signum, frame):
pass
def console_write(semaphore, uart):
with semaphore:
for buffer in sys.stdin:
try:
uart.write(buffer)
except IOError as e:
print (e)
except KeyboardInterrupt as kb:
print (kb)
def uart_connect(uart):
baud_rate = get_baud()
port = pyftdi.serialext.serial_for_url(uart, baudrate=baud_rate, bytesize=8, parity='N', stopbits=1)
connect_status = port.is_open
sleep(1)
semaphore = Semaphore(1)
worker = Thread(target=console_write, args=(semaphore, port))
worker.start()
print("[Connected to UART]")
while connect_status:
data = port.readline()
print (str(data.decode("ISO-8859-1")), flush=True, end='')
def baud_scan(uart):
try:
baudRates = [300, 600, 1200, 2400, 4800, 9600, 14400, 28800, 36400, 57600, 115200]
validRates = []
print("[Estimating Baud Rate]")
print ("[Power Cycle Device]")
input("[Enter to begin]")
for baud in baudRates:
try:
port = pyftdi.serialext.serial_for_url(uart, baudrate=baud, bytesize=8, parity='N', stopbits=1, timeout=1)
connect_status = port.is_open
sleep (2)
data = port.read(8)
print (f"\n[Checking baud {baud}]\n" + ("[Data]: " + str(data.decode("ISO-8859-1"))), flush=True, end='')
except IOError as e:
print (e)
except KeyboardInterrupt as kb:
print (kb)
print ("\n")
input("[Enter to continue]")
except EOFError:
exit()
return
except KeyboardInterrupt as e:
print (e)
return
def get_baud():
try:
while True:
baud = (input("[Baud Rate]: "))
if baud.isdigit():
if len(baud) < 10:
return int(baud.strip())
else:
print ("[Invalid Option]")
sleep(1)
return
else:
try:
return
except EOFError:
exit()
return
except EOFError:
exit()
return
except KeyboardInterrupt as e:
print (e)
return
def initialise_uart():
try:
device = str(Ftdi.list_devices())
device_details = device.split(",")
vid = (device_details[0].strip()[22:])
pid = (device_details[1].strip())
bus = (device_details[2].strip())
address = (device_details[3].strip())
sn = (device_details[4].strip()[4:-1])
description = (device_details[6].strip()[:-1])
interface = (device_details[7].strip()[:-2])
uart_interface = ("ftdi://ftdi:232:"+sn+"/"+interface)
return uart_interface
except IOError:
print ("[No FTDI devices found]")
except:
print("[No FTDI device found]")
sys.exit(0)
def banner():
if os.name == 'posix':
clr_cmd = ('clear')
elif os.name == 'nt':
clr_cmd = ('cls')
os.system(clr_cmd)
print("_ _ _ ____ _____ _____ _ _ _")
print("| | | | / \ | _ \_ _| | ____|_ ___ __ | | ___ (_) |_ ___ _ __")
print("| | | |/ _ \ | |_) || | | _| \ \/ / '_ \| |/ _ \| | __/ _ \ '__|")
print("| |_| / ___ \| _ < | | | |___ > <| |_) | | (_) | | || __/ |")
print(" \___/_/ \_\_| \_\|_| |_____/_/\_\ .__/|_|\___/|_|\__\___|_|")
print(" |_|")
print("[by exploitsecurity.io]\n")
def menu(uart):
try:
while True:
banner()
print(" __ __ ")
print(" | \/ | ___ _ __ _ _ ")
print(" | |\/| |/ _ \ '_ \| | | |")
print(" | | | | __/ | | | |_| |")
print(" |_| |_|\___|_| |_|\__,_|")
print("+───────────+───────────+─────────+")
print("| 1. UART Connect |")
print("| 2. UART Scan |")
print("| 3. Quit |")
print("+───────────+───────────+─────────+")
option = (input("[Option]: "))
if option == '1':
uart_connect(uart)
elif option == '2':
baud_scan(uart)
elif option == '3':
print ("[Curiosity Drives Our Very Fabric]")
sys.exit(0)
else:
print ("[Invalid Option]")
sleep(1)
except KeyboardInterrupt as e:
print (e)
print ("[Curiosity Drives Our Very Fabric]")
return
except ValueError as ve:
print (ve)
return
except EOFError:
exit()
return
def main():
signal.signal(signal.SIGTSTP, handler)
uart_device = initialise_uart()
menu(uart_device)
if __name__ == '__main__':
main()