Fix bug in feature X
This commit is contained in:
@@ -55,13 +55,14 @@
|
||||
|
||||
<h4>
|
||||
<ul>
|
||||
<p><span style="font-size: 0;"></span>🔹<a href="https://github.com/hak5/usbrubberducky-payloads#about-duckyscript">Hak5 Ducky Script </a> by Hak5</li>
|
||||
<p><span style="font-size: 0;"></span>🔹<a href="https://www.metasploitunleashed.org/">Metasploit Unleashed</a>: A comprehensive online resource with tutorials and documentation specifically focused on using Metasploit for penetration testing on macOS.</p>
|
||||
<p><span style="font-size: 0;"></span>🔹<a href="https://www.macsecurity.net/">MacSecurity.net</a>: A website dedicated to providing information, news, and tutorials related to macOS security, including penetration testing techniques and tools.</p>
|
||||
|
||||
<p><span style="font-size: 0;"></span>🔹<a href="https://www.ducktoolkit.com/">Duck Toolkit</a>: A more comprehensive guide on using Hak5's Rubber Ducky, including how to write and decode Ducky Scripts.</p>
|
||||
<p><span style="font-size: 0;"></span>🔹<a href="https://www.guru99.com/load-testing-tutorial.html">Guru99's Load Testing Tutorial</a>: An extensive tutorial that covers the principles and practical aspects of load testing, an essential part of assessing the performance and stability of a system under a particular load.</p>
|
||||
<p><span style="font-size: 0;"></span>🔹<a href="https://www.dropbox.com/developers/documentation/http/documentation">Dropbox API Keys Documentation</a>: Comprehensive developer documentation from Dropbox, including detailed instructions on how to generate and manage API keys for application development.</p>
|
||||
</ul>
|
||||
</h4>
|
||||
|
||||
|
||||
|
||||
<div align="center">
|
||||
<img alt="Coding" width="1473" height="10" src="https://thumbs.gfycat.com/KindDistortedIrrawaddydolphin-size_restricted.gif">
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
REM This script opens an Infinite Dropdown list on MacOS
|
||||
REM that continuously displays the message "I'll Never Leave"
|
||||
REM with a list of selectable option and "Ill Never Leave" button.
|
||||
REM It runs in the background using the nohup command.
|
||||
REM The script then clears the terminal and exits.
|
||||
|
||||
|
||||
|
||||
REM To end the loop you need to Kill the PID
|
||||
REM In the terminal, use the command "pgrep osascript" to find the PID of the dialog box loop
|
||||
REM Run the command 'Kill PID #' to end the dialog box loop
|
||||
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Infinite Dropdown list
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Executions
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING nohup osascript -e 'repeat' -e 'set dialogResult to button returned of (display dialog "I'"'"'ll Never Leave" buttons {"Option 1", "Option 2", "Option 3"} default button 1)' -e 'end repeat' >/dev/null 2>&1 &
|
||||
DELAY 500
|
||||
GUI k
|
||||
DELAY 500
|
||||
GUI w
|
||||
|
||||
Reference in New Issue
Block a user