Update Sat Mar 4 09:26:18 AM CST 2023
This commit is contained in:
parent
63455e73a1
commit
e5e69395c7
|
|
@ -39,6 +39,11 @@
|
||||||
# Writeups / Honorable Mentions
|
# Writeups / Honorable Mentions
|
||||||
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
||||||
|
|
||||||
|
# Revision 1.6.3 - mitm6 installation
|
||||||
|
- mitm6 moved from a python2 to python3 installation
|
||||||
|
- added --breaks-system-packages to get around pip related issues
|
||||||
|
- liblibc symlink correction added at the end of this function
|
||||||
|
|
||||||
# Revision 1.6.2 - FixSSH Removed
|
# Revision 1.6.2 - FixSSH Removed
|
||||||
- use kali-tweaks 2023.1.3 to resolve the issue with ssh -i and hydra out of memory
|
- use kali-tweaks 2023.1.3 to resolve the issue with ssh -i and hydra out of memory
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
# Standard Disclaimer: Author assumes no liability for any damage
|
# Standard Disclaimer: Author assumes no liability for any damage
|
||||||
|
|
||||||
# revision var
|
# revision var
|
||||||
revision="1.6.2"
|
revision="1.6.3"
|
||||||
|
|
||||||
# unicorn puke:
|
# unicorn puke:
|
||||||
red=$'\e[1;31m'
|
red=$'\e[1;31m'
|
||||||
|
|
@ -492,7 +492,7 @@ fix_liblibc() {
|
||||||
if [[ ! -f /usr/lib/x86_64-linux-gnu/liblibc.a ]]
|
if [[ ! -f /usr/lib/x86_64-linux-gnu/liblibc.a ]]
|
||||||
then
|
then
|
||||||
ln -sf /usr/lib/x86_64-linux-gnu/libc.a /usr/lib/x86_64-linux-gnu/liblibc.a
|
ln -sf /usr/lib/x86_64-linux-gnu/libc.a /usr/lib/x86_64-linux-gnu/liblibc.a
|
||||||
echo -e "\n $greenplus Fixing $arch liblibc.a symlink /usr/lib/x86_64-linux-gnu/liblibc.a "
|
echo -e "\n $greenplus Fixing $arch liblibc.a symlink /usr/lib/x86_64-linux-gnu/liblibc.a"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
@ -511,10 +511,10 @@ fix_mitm6() {
|
||||||
[[ -d /opt/mitm6 ]] && rm -rf /opt/mitm6 || git clone https://github.com/dirkjanm/mitm6 /opt/mitm6
|
[[ -d /opt/mitm6 ]] && rm -rf /opt/mitm6 || git clone https://github.com/dirkjanm/mitm6 /opt/mitm6
|
||||||
git clone https://github.com/dirkjanm/mitm6 /opt/mitm6
|
git clone https://github.com/dirkjanm/mitm6 /opt/mitm6
|
||||||
cd /opt/mitm6
|
cd /opt/mitm6
|
||||||
pip install typing twisted
|
pip3 install typing twisted --break-system-packages
|
||||||
pip install -r requirements.txt
|
pip3 install -r requirements.txt --break-system-packages
|
||||||
python setup.py install
|
python3 setup.py install
|
||||||
echo -e "\n $greenplus Fixing liblibc.a symlink.."
|
fix_liblibc
|
||||||
echo -e "\n $greenplus MITM6 installed.. "
|
echo -e "\n $greenplus MITM6 installed.. "
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue