Immunity Debugger – error importing module mona

2021-05-21 von Mario

After installing Immunity Debugger, I wanted to use the mona extension. The following error message

occurred: “pycommands: error importing module”.

 

Steps to solve the problem

1. Download Mona

git clone https://github.com/corelan/mona.git

2. Unpacking

unzip mona-master.zip

3. Copy mona.py

Add mona.py to the PyCommands subfolder in C:\Program Files (x86)\Immunity Inc\Immunity Debugger

4. Start Immunity Debugger

 

Kategorie: IT-Security

Windows 10 Bootable USB-Stick unter Ubuntu erstellen

2021-05-13 von Mario

Mit dieser Anleitung kann ein bootfähiger USB-Stick mit Windows 10 unter Ubuntu erstellt werden.

1. Windows ISO Downloaden

Als Windows 10 downloaden: https://www.microsoft.com/en-us/software-download/windows10ISO

2. Notwendige Tools installieren

sudo apt install gparted
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install woeusb

Dieses PPA (Personal Package Archive) beinhaltet viele weitere Softwarepakete. Wenn diese nicht benötigt werden, das PPA einfach entfernen.

sudo add-apt-repository --remove ppa:nilarimogard/webupd8
sudo apt update

3. USB-Stick installieren

Die Software WoeUSB kann aus dem Terminal mit dem Kommando “woeusbgui” gestartet werden.

Jetzt die Quelle (Source) auswählen und hier das heruntergeladene Image (Win10_20H2_v2_German_x64.iso) auswählen. Danach einen leeren USB-Stick anstecken, welcher bei “Target device” angezeigt wird. Zu guter Letzt den “Install” Button betätigen.

Kategorie: IT Schlagwörter:

Ubuntu MobSF installieren

2021-02-28 von Mario

Mit dieser Anleitung kann die Software Mobile Security Framework (MobSF) manuell installiert werden. MobSF ist ein Analyse Framework für Mobile Applikationen (Android/iOS/Windows).

1. Downloaden

git clone https://github.com/MobSF/Mobile-Security-Framework-MobSF.git
cd Mobile-Security-Framework-MobSF

2. Abhängigkeiten installieren

apt-get install python3-venv
pip3 install -r requirements.txt

3. Setup starten

Das Script “setup.sh” ausführen:

./setup.sh

Danach MobSF mit

./run.sh

starten und im Browser http://0.0.0.0:8000 aufrufen.

 

4. Bibliothek für PDF-Erstellung installieren

sudo apt install -y wkhtmltopdf

 

Kategorie: IT Schlagwörter:

Ubuntu Terminator installieren

2021-02-22 von Mario

Mit dieser Anleitung kann die Software Terminator manuell installiert werden.

1. Downloaden und Entpacken

Als erstes die Software herunterladen: https://github.com/gnome-terminator/…/terminator-2.1.0.tar.gz

tar xzvf terminator-2.1.0.tar.gz
cd terminator-2.1.0/

2. Abhängigkeiten installieren

Intltool besteht aus einer Reihe von Tools zur Zentralisierung von Übersetzungen vieler verschiedener Dateiformate.

sudo apt install intltool

3. Terminator installieren

python3 setup.py build
sudo python3 setup.py install
Kategorie: IT Schlagwörter:

Kali 2020.4 – Installation von Discord – libappindicator1

2021-01-31 von Mario

Mit der Anleitung kann Discord unter Kali 2020.4 installiert werden.

1) System updaten

Als erstes das System aktualisieren:

sudo apt-get update 
sudo apt-get upgrade

2) Gdebi installieren

Gdebi ist ein alternatives grafisches Installationsprogramm für Einzelpakete.

sudo apt-get install gdebi

3) Download der aktuellen Discord Version

wget -O discord-0.0.13.deb 
"https://discordapp.com/api/download?platform=linux&format=deb"

4) Discord installieren

sudo gdebi discord-0.0.13.deb

5) Discord starten

discord

 

Troubleshoot – libappindicator1

Spätestens bei Schritt vier erscheint folgende Fehlermeldung:

sudo gdebi discord-0.0.13.deb 
Reading package lists... Done
Building dependency tree        
Reading state information... Done
Reading state information... Done
This package is uninstallable
Dependency is not satisfiable: libappindicator1

Die Bibliothek “libappindicator1” wurde aus dem Kali Repository entfernt https://pkg.kali.org/pkg/libappindicator. Das Bibliothek muss selbst heruntergeladen und installiert werden.

1) Download der aktuellen libappindicator1 Version.

Link: https://http.kali.org/pool/main/liba/libappindicator

wget -O libappindicator1_0.4.92-8_amd64.deb 
"https://http.kali.org/pool/main/liba/libappindicator/libappindicator1_0.4.92-8_amd64.deb"

2) Download der aktuellen libindicator7 Version

Link: https://http.kali.org/pool/main/libi/libindicator/

wget -O libindicator7_0.5.0-4_amd64.deb 
"https://http.kali.org/pool/main/libi/libindicator/libindicator7_0.5.0-4_amd64.deb"

3) Installation

Damit die “libappindicator” Bibliothek installiert werden kann, muss zuvor die aktuelle Version von libindicator7 installiert werden.

sudo gdebi libindicator7_0.5.0-4_amd64.deb
sudo gdebi libappindicator1_0.4.92-8_amd64.deb 
sudo gdebi discord-0.0.13.deb

4) Starte Discord

discord

 

Danke Steven für den Gastartikel. :)

Kategorie: IT Schlagwörter: , , ,

Ubuntu Postman installieren

2021-01-10 von Mario

Mit der Anleitung kann die Software Postman unter Ubuntu Mate installiert werden.

1. System Updaten

Als erstes das System aktualisieren:

sudo apt-get update 
sudo apt-get upgrade

2. Download der aktuellen Version

wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz

3. Entpacken

sudo tar -xzf postman.tar.gz -C /opt

4. Starten

./opt/Postman/Postman
Kategorie: IT Schlagwörter: