Created
June 13, 2013 19:00
-
-
Save dash17291/5776388 to your computer and use it in GitHub Desktop.
OTPdirekt lekérdezése
SMS csak tranzakciohoz kell, belepeshez nem. Egyenleghez meg be sem kell lepni. A bankkártya szám és a telekód elég.
Alapértelmezésben az azonosító a kártyaszám utolsó 10 számjegye.
A telekód, az alapértelmezetten a számlaszám utolsó 3 számjegye.
http://hup.hu/node/120903?comments_per_page=9999
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
#!/bin/bash | |
read -p "Telekód: " -s line | |
echo -en "\nEgyenleg: " | |
wget -q --no-check-certificate -O - https://www.otpbankdirekt.hu/homebank/do/bankkartyaEgyenlegLekerdezes --post-data="azonosito=IDE_JÖN_AZ_AZONOSÍTÓ&telekod=$line&muvelet=login" | grep -e 'span class="value"' | head -1 | cut -d "<" -f 3 | cut -d ">" -f 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment