Open amritabithi opened 2 years ago
Im having issue on MX-Linux 21.3 wildflower
└─> trackerjacker
Traceback (most recent call last):
File "/home/cali/.local/bin/trackerjacker", line 5, in
Any help would be appreciated thanks!
I had the same problem.
You have to edit the file /home/cali/.local/lib/python3.9/site-packages/scapy/arch/bpf/core.py
on line 29. And change the LIBC = cdll.LoadLibrary(find_library("libc"))
by LIBC = cdll.LoadLibrary(find_library("c"))
.
Normally, it should work.
I'll give it a try. Thank you!
I had the same problem. You have to edit the file
/home/cali/.local/lib/python3.9/site-packages/scapy/arch/bpf/core.py
on line 29. And change theLIBC = cdll.LoadLibrary(find_library("libc"))
byLIBC = cdll.LoadLibrary(find_library("c"))
. Normally, it should work.
I edited line 29 but now i get a new error at the bottom....
AttributeError: 'array.array' object has no attribute 'tostring'
Any suggestions? In the meantime Ill try to search around for a solution.
Thanks again!
┌─[cali@cpu1]─[07:58:19 pm]──────────────────────────────────────────────────────────[~/.local/bin]
└─> ./trackerjacker
Traceback (most recent call last):
File "/home/cali/.local/bin/./trackerjacker", line 5, in <module>
from trackerjacker.__main__ import main
File "/home/cali/.local/lib/python3.9/site-packages/trackerjacker/__main__.py", line 15, in <module>
import scapy.all as scapy
File "/home/cali/.local/lib/python3.9/site-packages/scapy/all.py", line 25, in <module>
from scapy.route import *
File "/home/cali/.local/lib/python3.9/site-packages/scapy/route.py", line 191, in <module>
conf.route=Route()
File "/home/cali/.local/lib/python3.9/site-packages/scapy/route.py", line 27, in __init__
self.resync()
File "/home/cali/.local/lib/python3.9/site-packages/scapy/route.py", line 36, in resync
self.routes = read_routes()
File "/home/cali/.local/lib/python3.9/site-packages/scapy/arch/linux.py", line 280, in read_routes
tmp_route = get_alias_address(iff, dst_int, gw_str, metric)
File "/home/cali/.local/lib/python3.9/site-packages/scapy/arch/linux.py", line 195, in get_alias_address
names = names.tostring()
AttributeError: 'array.array' object has no attribute 'tostring'
The program does not install to the environment properly, causing the program to not be recognized while logged in as root, and not executable while not loggedin as root, failing with the message "r00t is required."
Executing the program directly from the directory it was installed to while logged in as root throws the error "No module named trackerjacker."
Thanks!