- Burp Suite - https://portswigger.net/burp/communitydownload
- OWASP ZAP - https://www.zaproxy.org/download/
- sqlmap http://sqlmap.org/
- Metasploit Framework - https://www.metasploit.com/download
- Nmap https://nmap.org/download.html
- Nikto https://github.com/sullo/nikto
- Dirb - https://sourceforge.net/projects/dirb/
- Wfuzz - https://github.com/xmendez/wfuzz
- Gobuster- https://github.com/OJ/gobuster
- Sublist3r https://github.com/aboul3la/Sublist3r
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $rule = New-Object System.Security.AccessControl.RegistryAccessRule( | |
| "NT AUTHORITY\NETWORK SERVICE", # IdentityReference | |
| [System.Security.AccessControl.RegistryRights]::FullControl, # RegistryRights | |
| [System.Security.AccessControl.InheritanceFlags]::ContainerInherit, # InheritanceFlags | |
| [System.Security.AccessControl.PropagationFlags]::None, # PropagationFlags | |
| [System.Security.AccessControl.AccessControlType]::Allow # AccessControlType | |
| ) | |
| $registry_keys = "Dhcp", "Tcpip", "Tcpip6", "TCPIPTUNNEL", "TCPIP6TUNNEL" | |
| $registry_folder = "HKLM:\SYSTEM\CurrentControlSet\Services\{registry_key}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # =========================================== | |
| # ZSH Hacks - Dreams of Code | |
| # =========================================== | |
| # Add these to your .zshrc file | |
| # =========================================== | |
| # ------------------------------------------- | |
| # 1. Edit Command Buffer | |
| # ------------------------------------------- | |
| # Open the current command in your $EDITOR (e.g., neovim) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import face_recognition | |
| import cv2 | |
| import numpy as np | |
| import argparse | |
| import os | |
| def apply_blur(image, region, light_blur=False): | |
| """Menerapkan efek blur dengan intensitas berbeda""" | |
| try: | |
| top, right, bottom, left = region |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import face_recognition | |
| import cv2 | |
| import numpy as np | |
| import argparse | |
| import os | |
| def apply_blur(image, region, light_blur=False): | |
| """Menerapkan efek blur dengan intensitas berbeda""" | |
| try: | |
| top, right, bottom, left = region |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <ArduLite.h> | |
| // Sensors | |
| Digital leftSensor(2, IN); | |
| Digital rightSensor(3, IN); | |
| // DC Motors | |
| PWM leftMotor1(5); | |
| PWM leftMotor2(6); | |
| PWM rightMotor1(9); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<Servo.h> | |
| Servo servo; | |
| byte derajat = 0; | |
| const byte TRIG_PIN = 5; | |
| const byte ECHO_PIN = 4; | |
| long durasi, jarak = 0; | |
| const byte buzzer = 12; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $rule = New-Object System.Security.AccessControl.RegistryAccessRule( | |
| "NT AUTHORITY\NETWORK SERVICE", # IdentityReference | |
| [System.Security.AccessControl.RegistryRights]::FullControl, # RegistryRights | |
| [System.Security.AccessControl.InheritanceFlags]::ContainerInherit, # InheritanceFlags | |
| [System.Security.AccessControl.PropagationFlags]::None, # PropagationFlags | |
| [System.Security.AccessControl.AccessControlType]::Allow # AccessControlType | |
| ) | |
| $registry_keys = "Dhcp", "Tcpip", "Tcpip6", "TCPIPTUNNEL", "TCPIP6TUNNEL" | |
| $registry_folder = "HKLM:\SYSTEM\CurrentControlSet\Services\{registry_key}" |
- Step 1: Download and install StarUML Ver6 from main website https://staruml.io
- Step 2: Download
app.asarfile from https://drive.google.com/file/d/1_sKvHVL6SebnYF73iZxSWD9l48Pddzvj/view?usp=sharing - Step 3: Copy
app.asarfile download in step 2 (Overrideapp.asarfile)- Window:
C:\Program Files\StarUML\resources - MacOS:
/Applications/StarUML.app/Contents/Resources/ - Linux:
/opt/StartUML/resources
- Window:
- Step 4: Open StarUML app to use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Download the source | |
| git clone https://github.com/instructure/canvas-lms.git canvas | |
| cd canvas | |
| git checkout --track -b stable origin/stable | |
| rbenv install –keep 1.9.3-p545 | |
| rbenv local 1.9.3-p545 | |
| brew install xmlsec1 postgresql | |
| bundle install | |
| # If you get this error: No source for ruby-1.9.3-p545 provided with debugger-ruby_core_source gem. |
NewerOlder