Help to install dsniff and/or arpspoof on Pineapple cloner #7
Replies: 3 comments 8 replies
-
|
If you run opkg update before and it doesn't install them, then they are not in any of the download repos. |
Beta Was this translation helpful? Give feedback.
-
|
After searching I realised that the Devices I have are mipsel_24kc without repos support for dsniff and arpspoof (what you shared is for mips_24kc). So I bought a Mikrotik RB951G-2HND - mips_24kc, then I am going to build the cloner firmware for this device. But it seems my device is not yet added to your support code. Could you please guide me how build with the sample command "tools/builder.sh mips universal imagebuilder/19.07.7-ar71xx-generic gl-ar750s" => Which code for my device instead of gl-ar750s? |
Beta Was this translation helpful? Give feedback.
-
|
Installing dsniff/arpspoof on a Pineapple cloner can be tricky due to OpenWrt package availability. Here is how: Method 1: opkg (if available)opkg update
opkg install dsniffIf Method 2: Cross-compile from sourceIf opkg does not have dsniff: # On your build machine (not the router)
git clone https://github.com/openwrt/packages
# Find dsniff in net/dsniff
# Build with the OpenWrt SDK matching your router architectureMethod 3: Use ettercap insteadEttercap is often easier to get running on OpenWrt and does everything arpspoof does plus more: opkg update
opkg install ettercap
# ARP poisoning
ettercap -T -M arp:remote /target_ip// /gateway_ip//Method 4: Manual arpspoof with arpingIf you just need basic ARP spoofing: # Install arping
opkg install iputils-arping
# Manual ARP poison (basic script)
while true; do
arping -U -I br-lan -s <gateway_ip> <target_ip>
sleep 1
doneImportant
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello there,
I would like to ask if someone can help and guide me how to install the arpspoof and/or dsniff on the Pineapple cloner.
I did try and find on the internet but could not find a way.
Here is the error message:
**Unknown package 'arpspoof'.
Collected errors:
Thanks
Beta Was this translation helpful? Give feedback.
All reactions