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
| 7:11:54.942 > Entering iwmDisk::mount - /APPLE/GAMES/CHOPLIFTER.PO | |
| 17:11:54.942 > | |
| 17:11:54.942 > Looking for Media Type- should be a PO image... | |
| 17:11:54.944 > Media Type PO | |
| 17:11:54.946 > idle | |
| 17:11:54.948 > enable | |
| 17:11:54.948 > f3 fc ff ff ff c3 83 80 80 80 80 82 81 80 84 83 90 c1 d1 f9 80 80 80 80 ee bf c8 | |
| 17:11:54.949 > handling control command | |
| 17:11:54.949 > Device 83 Control Code f9 | |
| 17:11:54.950 > Control List is at 41 51 |
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
| ______________________________________________________________________________ | |
| 8888888888 Y88b d88P | |
| 888 Y88b d88P | |
| 888 Y88o88P | |
| 8888888 Y888P | |
| 888 d888b | |
| 888 d88888b |
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
| #! /usr/bin/env python3 | |
| ''' | |
| Needs Requests (pip3 install requests) | |
| Author: Marcello Salvati, Twitter: @byt3bl33d3r | |
| License: DWTFUWANTWTL (Do What Ever the Fuck You Want With This License) | |
| This should allow you to detect if something is potentially exploitable to the log4j 0day dropped on December 9th 2021. |
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
| /* START -----------------------------------------------------------------to hide the native tabs */ | |
| @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
| /* to hide the native tabs */ | |
| #TabsToolbar { | |
| visibility: collapse; | |
| } | |
| #main-window[privatebrowsingmode="temporary"] #TabsToolBar { | |
| visibility: visible !important; | |
| } | |
| /* Minimize sidebar header to a light blue stripe (except Bookmarks, History, Sync'd Tabs); appears normally on hover */ |
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
| brew install cask maestral | |
| brew install cask microsoft-edge | |
| brew install google-chrome | |
| brew install firefox | |
| brew install vivaldi | |
| brew install cask slack | |
| brew install cask discord |
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
| Building irix QEMU on Ubuntu 20 LTS | |
| 5.11.0-40-generic #44~20.04.2-Ubuntu | |
| gh repo clone sgidevnet/qemu-irix | |
| sudo apt-get install build-essential zlib1g-dev pkg-config libglib2.0-dev \ | |
| binutils-dev libboost-all-dev autoconf libtool libssl-dev libpixman-1-dev \ | |
| python3-pip python-capstone python libncurses-dev libgcrypt-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
| #!/usr/sgug/bin/bash | |
| # Must rebuild: zlib | |
| rpmbuild -ba zlib.spec --nocheck | |
| touch ~/rpmbuild/PROGRESS/zlib.done | |
| # Must rebuild: xz | |
| rpmbuild -ba xz.spec --nocheck | |
| touch ~/rpmbuild/PROGRESS/xz.done | |
| # Must rebuild: xosview | |
| rpmbuild -ba xosview.spec --nocheck | |
| touch ~/rpmbuild/PROGRESS/xosview.done |
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
| Vlad's SSHD RSE Fix, install & text | |
| Nov 2021 | |
| - | |
| git checkout wip-testing | |
| cd ~/rpmbuild | |
| cp -r ~/code/sgug-rse/packages/openssh/* ~/rpmbuild/ |
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
| System Maintenance Menu | |
| 1) Start System | |
| 2) Install System Software | |
| 3) Run Diagnostics | |
| 4) Recover System | |
| 5) Enter Command Monitor |
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
| #!/usr/sgug/bin/bash | |
| # acdiller v1.0.5 trying to automate rse builds | |
| # april2021 | |
| # > now it installs all created rpms properly | |
| # | |
| basepath="/usr/people/`whoami`" | |
| codebase="$basepath/sgug-rse.git/packages" | |
| rpmbase="$basepath/rpmbuild" | |
| srcbase="$basepath/rpmbuild/SRPMS" | |
| fc31updates='https://archives.fedoraproject.org/pub/archive/fedora/linux/updates/31/Everything/SRPMS/Packages' |