Welcome to Zeta-Net! Enjoy your stay!
--ro--
De anul trecut am inceput sa invat limbajul AutoIT, sperand sa ajung la crearea unor programe inteligente (si asa a si fost). Am inceput cu message-box-uri (pop-up uri) si am ajuns la crearea programului WinTools 1.0 (ceva gen Command Prompt, dar cu grafica).
Deci, unde vreau sa duc subiectul : AutoIT este un limbaj flexibil, folosit pentru a crea script-uri (coduri) automate. Conform unui articol din revista CHIP, AutoIT ar fi unul din limbajele preferate ale hackerilor. Multe programe sub AutoIT sunt detectate ca si cod malicios de anti-virusi, dar de multe ori nu sunt.
Vizitand forumul oficial AutoIT, am gasit cateva chestii interesante, printre care cum sa uploadezi fisiere pe un server FTP. Asta mi-a dat o idee : sa creez un program care sa creeze un fisier text si sa puna in el ETS-ul de Yahoo! (ETS = suma dintre nume si parola de la Yahoo! ~ se memoreaza in registri aceasta suma atunci cand bifezi "Remember my ID & password") sa-l redenumeasca VICTIMA.txt (ex : gogu_de_la_gaze23.txt) si sa-l uploadeze intr-un folder din doomclip.info
Deci, in AutoIT se poate face mult mai mult decat asta. Am intalnit programe de tip IStealer create in AutoIT, si chiar am creat eu un program de tip Key-Logger (toate butoanele pe care le apesi tu sunt memorate intr-un fisier text ~ il gasiti pe blogul meu www.doomclip.info).
Este foarte usor de folosit, de exemplu, sa facem un fisier (gogu.txt) unde sa scriem "Vizitati www.google.ro".
fileopen ("gogu.txt",1)
filewrite ("gogu.txt","Vizitati www.google.ro")
fileclose ("gogu.txt")
Sa explic acuma liniile. In prima linie avem fileopen semnificand deschiderea fisierului (daca fisierul nu exista, este automat creat), apoi 1. In linia urmatoare scriem in fisier cu ajutorul comenzii filewrite textul dupa care inchidem fisierul cu fileclose.
Acesta este cel mai usor script. De aici, se poate avansa la coduri mult mai avansate, astfel sa te conectezi la o baza de date, sa downloadezi de pe YouTube etc.
Trebuie doar sa ai idei. :)
--en--
Last year I began to learn AutoIT, hoping to create smart programs (and I've done)
I've started with message box and I've managed to create WinTools v1.0 (something like Command Prompt, but with GUI)
So, the subject : AutoIT is flexible, used to create automatic scripts. I've read in a romanian IT magazin that AutoIT is preffered by hackers. Many AutoIT based programs are detected by AV as malicious code, but not all of them are. Visiting the AutoIT official forum, I've found out some interesting thing, like how to upload file on a FTP server. This gived me an idea : to create a software that creates a text file, put's the Yahoo! ETS in it (ETS = a sum of username and password ~ it is stored in Registry when you press "Remember my ID & password") and to rename it into VICTIM.txt (eg : google4you.txt) and to upload it into a folder in doomclip.info
So, AutoIT can do much more than that. I've found out softwares like IStealer created in AutoIT, and I have also created a Key-Logger program (it stores all the buttons you press into a text file ~ you can find it on my blog www.doomclip.info).
It is really easy, for example, let's create a file (gogu.txt) and then write into it "Visit www.google.com".
fileopen ("gogu.txt",1)
filewrite ("gogu.txt","Visit www.google.com")
fileclose ("gogu.txt")
Now, I will explain the lines. In the first line we have fileopen that means opening the file (if it doesn't exist, it will be created by computer), and then 1. In the next line we write into the file using filewrite the text and after that we close the file with fileclose.
This is the easiest script. From here, you can create much more advanced codes, like connecting to a database, downloading from YouTube etc.
You just need to have ideas.
De anul trecut am inceput sa invat limbajul AutoIT, sperand sa ajung la crearea unor programe inteligente (si asa a si fost). Am inceput cu message-box-uri (pop-up uri) si am ajuns la crearea programului WinTools 1.0 (ceva gen Command Prompt, dar cu grafica).
Deci, unde vreau sa duc subiectul : AutoIT este un limbaj flexibil, folosit pentru a crea script-uri (coduri) automate. Conform unui articol din revista CHIP, AutoIT ar fi unul din limbajele preferate ale hackerilor. Multe programe sub AutoIT sunt detectate ca si cod malicios de anti-virusi, dar de multe ori nu sunt.
Vizitand forumul oficial AutoIT, am gasit cateva chestii interesante, printre care cum sa uploadezi fisiere pe un server FTP. Asta mi-a dat o idee : sa creez un program care sa creeze un fisier text si sa puna in el ETS-ul de Yahoo! (ETS = suma dintre nume si parola de la Yahoo! ~ se memoreaza in registri aceasta suma atunci cand bifezi "Remember my ID & password") sa-l redenumeasca VICTIMA.txt (ex : gogu_de_la_gaze23.txt) si sa-l uploadeze intr-un folder din doomclip.info
Deci, in AutoIT se poate face mult mai mult decat asta. Am intalnit programe de tip IStealer create in AutoIT, si chiar am creat eu un program de tip Key-Logger (toate butoanele pe care le apesi tu sunt memorate intr-un fisier text ~ il gasiti pe blogul meu www.doomclip.info).
Este foarte usor de folosit, de exemplu, sa facem un fisier (gogu.txt) unde sa scriem "Vizitati www.google.ro".
fileopen ("gogu.txt",1)
filewrite ("gogu.txt","Vizitati www.google.ro")
fileclose ("gogu.txt")
Sa explic acuma liniile. In prima linie avem fileopen semnificand deschiderea fisierului (daca fisierul nu exista, este automat creat), apoi 1. In linia urmatoare scriem in fisier cu ajutorul comenzii filewrite textul dupa care inchidem fisierul cu fileclose.
Acesta este cel mai usor script. De aici, se poate avansa la coduri mult mai avansate, astfel sa te conectezi la o baza de date, sa downloadezi de pe YouTube etc.
Trebuie doar sa ai idei. :)
--en--
Last year I began to learn AutoIT, hoping to create smart programs (and I've done)
I've started with message box and I've managed to create WinTools v1.0 (something like Command Prompt, but with GUI)
So, the subject : AutoIT is flexible, used to create automatic scripts. I've read in a romanian IT magazin that AutoIT is preffered by hackers. Many AutoIT based programs are detected by AV as malicious code, but not all of them are. Visiting the AutoIT official forum, I've found out some interesting thing, like how to upload file on a FTP server. This gived me an idea : to create a software that creates a text file, put's the Yahoo! ETS in it (ETS = a sum of username and password ~ it is stored in Registry when you press "Remember my ID & password") and to rename it into VICTIM.txt (eg : google4you.txt) and to upload it into a folder in doomclip.info
So, AutoIT can do much more than that. I've found out softwares like IStealer created in AutoIT, and I have also created a Key-Logger program (it stores all the buttons you press into a text file ~ you can find it on my blog www.doomclip.info).
It is really easy, for example, let's create a file (gogu.txt) and then write into it "Visit www.google.com".
fileopen ("gogu.txt",1)
filewrite ("gogu.txt","Visit www.google.com")
fileclose ("gogu.txt")
Now, I will explain the lines. In the first line we have fileopen that means opening the file (if it doesn't exist, it will be created by computer), and then 1. In the next line we write into the file using filewrite the text and after that we close the file with fileclose.
This is the easiest script. From here, you can create much more advanced codes, like connecting to a database, downloading from YouTube etc.
You just need to have ideas.
Subscribe to:
Post Comments (Atom)
Post a Comment