Pugna Posted December 4, 2011 Report Share Posted December 4, 2011 (edited) Technitium MAC Address Changer allows you to change Media Access Control (MAC) Address of your Network Interface Card (NIC) irrespective to your NIC manufacturer or its driver. It has a very simple user interface and provides ample information regarding each NIC in the machine. Every NIC has a MAC address hard coded in its circuit by the manufacturer. This hard coded MAC address is used by windows drivers to access Ethernet Network (LAN). This tool can set a new MAC address to your NIC, bypassing the original hard coded MAC address. Technitium MAC Address Changer is a must tool in every security professionals tool box. Technitium MAC Address Changer is coded in Visual Basic 6.0.Technitium MAC Address Changer v5 Release 3 (FREEWARE)Nu exista retea la care sa ma conectez si sa nu imi schimb MAC-ul. Pe *NIX e mult mai simplu : ifconfig ethX hw ether 01:22:33:AA:c4:30 Edited December 4, 2011 by Pugna Quote Link to comment Share on other sites More sharing options...
l34k Posted December 4, 2011 Report Share Posted December 4, 2011 Din cate vad programul e doar un frontend. mac-ul se schimba la fel de simplu pe *NIX/Windows Quote Link to comment Share on other sites More sharing options...
Pugna Posted December 4, 2011 Author Report Share Posted December 4, 2011 Din cate vad programul e doar un frontend. mac-ul se schimba la fel de simplu pe *NIX/WindowsPe *NIX da, dar pe Windows trebuie sa schimbi din registry, ori sa te duci la Adaptor Settings, iar ca sa salvez timp ma folosesc de aplicatia pe care am postat-o; are si un frontend dragut cu feature-uri pe care le mai folosesc de la caz la caz ... simplific lucrurile. Quote Link to comment Share on other sites More sharing options...
l34k Posted December 4, 2011 Report Share Posted December 4, 2011 Bine Capitane, admit ca poate fi un tool util pentru n00bz Quote Link to comment Share on other sites More sharing options...
Pugna Posted December 4, 2011 Author Report Share Posted December 4, 2011 Bine Capitane, admit ca poate fi un tool util pentru n00bz Pentru cei care nu stiu cu ce se mananca, noobs indeed Quote Link to comment Share on other sites More sharing options...
Românescu Posted December 4, 2011 Report Share Posted December 4, 2011 Pe win7 ultimate x86 n-am avut sanse cu absolut niciun "tool" de genu' pentru schimbarea mac-ului. Nici cu setari manuale din registry sau alte modificari din device-manager. Quote Link to comment Share on other sites More sharing options...
Maximus Posted December 4, 2011 Report Share Posted December 4, 2011 Pentru Windows este bun si AMac-ul Quote Link to comment Share on other sites More sharing options...
Pugna Posted December 4, 2011 Author Report Share Posted December 4, 2011 Pe win7 ultimate x86 n-am avut sanse cu absolut niciun "tool" de genu' pentru schimbarea mac-ului. Nici cu setari manuale din registry sau alte modificari din device-manager.Run as Administrator Quote Link to comment Share on other sites More sharing options...
greerasu_tony Posted December 4, 2011 Report Share Posted December 4, 2011 http://www.virustotal.com/file-scan/report.html?id=8c8deba5336b658305e2ae035d53290d5671c2537eced159bfedd1efc7c371b0-1322899588 Quote Link to comment Share on other sites More sharing options...
Pugna Posted December 5, 2011 Author Report Share Posted December 5, 2011 http://www.virustotal.com/file-scan/report.html?id=8c8deba5336b658305e2ae035d53290d5671c2537eced159bfedd1efc7c371b0-1322899588Te hazardezi degeaba. Installer-ul e de pe site-ul lor oficial, iar Technium au istorie. Il detecteaza din cauza functiilor pe care le are. False positive : http://forums.cnet.com/7723-21574_102-546820.html Quote Link to comment Share on other sites More sharing options...
Românescu Posted December 5, 2011 Report Share Posted December 5, 2011 @PugnaDoar nu crezi ca incercam o duzina de aplicatii fara sa incerc si run as administrator la fiecare?Am vazut ca mai au destui problema asta.Oricum, cand am nevoie de clonare de mac trec pe ubuntu. Quote Link to comment Share on other sites More sharing options...
Pugna Posted December 5, 2011 Author Report Share Posted December 5, 2011 @PugnaDoar nu crezi ca incercam o duzina de aplicatii fara sa incerc si run as administrator la fiecare?N-am idee, eu doar ti-am propus o solutie la indemana, ca oricum fara drepturi de administrator nu iti face schimbarile. Mie-mi functioneaza perfect. Quote Link to comment Share on other sites More sharing options...
HellScream Posted December 5, 2011 Report Share Posted December 5, 2011 eventaul ip poti face tu/* * changemac.c - (C) 2011 by hellscream */#include <stdio.h>#include <stdlib.h>#include <sys/time.h>int main() { // Forloop variable unsigned short int i=0; // To get milliseconds struct timeval t; // Temporary random number unsigned short int ran=0; // Get time gettimeofday(&t, NULL); // Init random number generator srand(t.tv_usec); // Print random mac address for(i=0; i<6; i++) { ran = 0+rand()%256; if(ran <= 9) (i<5) ? printf("0%X:", ran) : printf("0%X", ran); else (i<5) ? printf("%X:", ran) : printf("%X", ran); } // all good return 0;} Quote Link to comment Share on other sites More sharing options...
Pugna Posted December 5, 2011 Author Report Share Posted December 5, 2011 In regula, ai generat MAC-ul, dar unde il schimbi ? eventaul ip poti face tu/* * changemac.c - (C) 2011 by hellscream */#include <stdio.h>#include <stdlib.h>#include <sys/time.h>int main() { // Forloop variable unsigned short int i=0; // To get milliseconds struct timeval t; // Temporary random number unsigned short int ran=0; // Get time gettimeofday(&t, NULL); // Init random number generator srand(t.tv_usec); // Print random mac address for(i=0; i<6; i++) { ran = 0+rand()%256; if(ran <= 9) (i<5) ? printf("0%X:", ran) : printf("0%X", ran); else (i<5) ? printf("%X:", ran) : printf("%X", ran); } // all good return 0;} Quote Link to comment Share on other sites More sharing options...