This file contains 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
sudo -i | |
apt update | |
apt install \ | |
build-essential \ | |
capstone-tool \ | |
git \ | |
libcapstone-dev \ | |
libdistorm3-dev \ | |
libraw1394-11 \ | |
pcregrep \ |
This file contains 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
# 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 |
This file contains 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/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); |