- Chroot into your linux instalation
- The easiest way is with
mhwd-chroot- Install it
yaourt -S mhwd-chroot - Run it
sudo mhwd-chroot - DONE, you have chrooted into your linux installation (open a root console of your installed linux OS, is like just open a console with root access)
- Install it
- The easiest way is with
- Restore your GRUB
- Install a new GRUB bootloader with
grub-install /dev/sda - Recheck to ensure the that installation has completed without any errors
grub-install --recheck /dev/sda
- Install a new GRUB bootloader with
timedatectl set-local-rtc 1 --adjust-system-clock
timedatectl # to check
This file has been truncated, but you can view the full file.
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 python | |
| # | |
| # Hi There! | |
| # | |
| # You may be wondering what this giant blob of binary data here is, you might | |
| # even be worried that we're up to something nefarious (good for you for being | |
| # paranoid!). This is a base85 encoding of a zip file, this zip file contains | |
| # an entire copy of pip (version 20.3.4). | |
| # | |
| # Pip is a thing that installs packages, pip itself is a package that someone |
vi /var/lib/dpkg/status and remove libc++1 from it.
Slack and Discord are affected in Kali because libc++1 is replaced with libstdc++.
I hereby claim:
- I am the-robot on github.
- I am 0x06 (https://keybase.io/0x06) on keybase.
- I have a public key ASBse_6o-nqmMjiqvaU6YpW1fvmn6yrlKcSy7kt95hD2Wgo
To claim this, I am signing this object:
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
| # NOTE: the most updated version of PowerView (http://www.harmj0y.net/blog/powershell/make-powerview-great-again/) | |
| # has an updated tricks Gist at https://gist.github.com/HarmJ0y/184f9822b195c52dd50c379ed3117993 | |
| # get all the groups a user is effectively a member of, 'recursing up' | |
| Get-NetGroup -UserName <USER> | |
| # get all the effective members of a group, 'recursing down' | |
| Get-NetGroupMember -GoupName <GROUP> -Recurse | |
| # get the effective set of users who can administer a server |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
Because of this bug the libnet1 dpkg installation fails.
$ sudo dpkg -i --force-overwrite /var/cache/apt/archives/libnet1_1.1.6+dfsg-3.1build2_amd64.deb
dpkg-deb: error: archive '/var/cache/apt/archives/libnet1_1.1.6+dfsg-3.1build2_amd64.deb' uses unknown compression for member 'control.tar.zst', giving up
dpkg: error processing archive /var/cache/apt/archives/libnet1_1.1.6+dfsg-3.1build2_amd64.deb (--install):
dpkg-deb --control subprocess returned error exit status 2
Errors were encountered while processing:
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 | |
| # base on: | |
| # https://gist.github.com/the-robot/354ca1e9b6c1b194d523b0d52f206c70 | |
| Original=$1 | |
| OriginalPath=$(realpath $Original) | |
| Repackage="${Original%.*}_repackage.dpkg" | |
| cd $(mktemp -d) |