Path: blob/master/payloads/library/mobile/iOS/RickRoll-Contact-iOS/payload.txt
2971 views
REM_BLOCK1############################################2# #3# Title : Create RickRoll Contact #4# Author : bst04 - Aleff #5# Version : 1.0 #6# Category : Prank #7# Target : iOS #8# #9############################################10END_REM1112REM @@@ START MANDATORY DEFINEs @@@13REM We believe that these 4 pieces of information are critical to making contact, even if it is for fun.1415DEFINE #CONTACTS-APP-NAME Contacts16DEFINE #CONTACT-NAME Ricky17DEFINE #CONTACT-LAST-NAME Astley18DEFINE #CONTACT-PHONE-NUMBER +1(111)111-11111920REM @@@ START OPTIONAL DEFINEs @@@2122DEFINE #CONTACT-COMPANY example23DEFINE #CONTACT-E-MAIL example24DEFINE #CONTACT-WEBSITE-URL example25DEFINE #CONTACT-BIRTHDAY example26DEFINE #CONTACT-STREET example27DEFINE #CONTACT-CITY example28DEFINE #CONTACT-STATE example29DEFINE #CONTACT-ZIP example30DEFINE #CONTACT-COUNTRY example3132REM @@@ START PAYLOAD @@@3334EXTENSION DETECT_READY35REM VERSION 1.136REM AUTHOR: Korben3738REM_BLOCK DOCUMENTATION39USAGE:40Extension runs inline (here)41Place at beginning of payload (besides ATTACKMODE) to act as dynamic42boot delay4344TARGETS:45Any system that reflects CAPSLOCK will detect minimum required delay46Any system that does not reflect CAPSLOCK will hit the max delay of 3000ms47END_REM4849REM CONFIGURATION:50DEFINE #RESPONSE_DELAY 2551DEFINE #ITERATION_LIMIT 1205253VAR $C = 054WHILE (($_CAPSLOCK_ON == FALSE) && ($C < #ITERATION_LIMIT))55CAPSLOCK56DELAY #RESPONSE_DELAY57$C = ($C + 1)58END_WHILE59CAPSLOCK60END_EXTENSION6162REM Another pinch of delay in accordance with https://shop.hak5.org/blogs/usb-rubber-ducky/detect-ready63DELAY 2006465GUI SPACE66DELAY 25067STRINGLN #CONTACTS-APP-NAME68DELAY 50069GUI n7071REM name72DELAY 25073STRING #CONTACT-NAME74TAB7576REM last name77DELAY 25078STRING #CONTACT-LAST-NAME79TAB8081REM company82DELAY 25083STRING #CONTACT-COMPANY84TAB8586REM phone number87DELAY 25088STRING #CONTACT-PHONE-NUMBER89TAB90TAB9192REM mail93DELAY 25094STRING #CONTACT-E-MAIL95TAB96TAB9798REM url99DELAY 250100STRING #CONTACT-WEBSITE-URL101TAB102TAB103104REM birthday105DELAY 250106STRING #CONTACT-BIRTHDAY107TAB108TAB109110REM street111DELAY 250112STRING #CONTACT-STREET113TAB114115REM city116DELAY 250117STRING #CONTACT-CITY118TAB119120REM state121DELAY 250122STRING #CONTACT-STATE123TAB124125REM zip126DELAY 250127STRING #CONTACT-ZIP128TAB129130REM country/region131DELAY 250132STRING #CONTACT-COUNTRY133TAB134GUI q135136137