Skip to content

Instantly share code, notes, and snippets.

View kovacs-andras's full-sized avatar
🎯
Focusing

Andras kovacs-andras

🎯
Focusing
View GitHub Profile
@kovacs-andras
kovacs-andras / Volatility2.sh
Created October 13, 2023 10:20
Volatility2 install for modern Linux kernels on Kali W41
sudo -i
apt update
apt install \
build-essential \
capstone-tool \
git \
libcapstone-dev \
libdistorm3-dev \
libraw1394-11 \
pcregrep \
@kovacs-andras
kovacs-andras / install.sh
Created September 5, 2023 23:29
KEAASZ on Red Hat 9
# e-személyi kliens telepítése
dnf install pcsc-cyberjack
dnf install https://eszemelyi.hu/wp-content/uploads/2023/05/eSzemelyi_Kliens_x64_1_7_3.rpm
# KEAASZ - Kormányzati Elektronikus Aláíró és Aláírásellenőrző Szoftver telepítése
dnf install java-11-openjdk-headless
mkdir -m 0700 ~/KEAASZ
cd ~/KEAASZ
#!/usr/bin/perl
use Geo::IP;
my $gi = Geo::IP->open("/usr/share/GeoIP/GeoLiteCountry.dat", GEOIP_STANDARD);
$country = $gi->country_code_by_name($ARGV[0]);
#print $country;
if ($country ne 'US'){
exit(1);