i think i found it:
/pentest/exploits/set/src/webattack/web_clone/cloner.py
about half:
Code:
# if Linux
if counter == 0:
subprocess.Popen('%s;cd src/program_junk/web_clone/;../../webattack/web_clone/linux/wget --no-check-certificate -O index.html -c -k -U "%s" %s' % (proxy_config,user_agent,url), stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True).wait()
i think you should make:
Code:
# if Linux
if counter == 0:
subprocess.Popen('%s;cd src/program_junk/web_clone/;../../webattack/web_clone/linux/wget -U "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405" --no-check-certificate -O index.html -c -k -U "%s" %s' % (proxy_config,user_agent,url), stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True).wait()
i haven't tested, let me know