Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - aaanathan

Pages: [1]
1
Hacking and Security / Re: Automating Facebook Login
« on: January 15, 2016, 05:47:46 pm »
Hi,

A very happy new year to you Arjun.

I have tried this once before a year. A few points to note here.
Consider you are able to login automatically and wanted to fetch the friends list.

1. I hope you could have checked the source code once you logged in Facebook. Everything is JavaScript to generate a page.
2. Still site loads the content based on your scroll event.
3. So Requests module will not support JavaScript.
4. Please move to some headless browser like phantomjs casperjs or selenium web driver to automate web automation.

Hope this helps in some point.

Sent from my A0001 using Tapatalk


2
Web Oriented Coding / Re: Inspect element automation in browser
« on: January 14, 2016, 05:32:16 am »
wow man, is awesome . and i need to do edit the contents of website by using inspect element by automation, not only view the source code and modifying on client side
Hi,

I think you are not getting the point dude. If you inspect the page, anyhow you are going to land on HTML page. What the mentioned Python code will do is exactly same. It's going to give you a HTML response to you. You have manipulate that to achieve what you are trying.

You can see the following URL as sample.
http://www.arock.in/python/have-you-got-tired-of-waiting-for-web-service/

Sent from my A0001 using Tapatalk


3
Scripting Languages / Re: [Python] Browser automation
« on: November 12, 2015, 05:46:01 pm »
You can use casperjs for this.

Sent from my A0001 using Tapatalk


4
Hacking and Security / Re: Triggering URL frequently with Tor.
« on: October 13, 2015, 04:09:50 pm »
Hi,

Thanks for your reply,

Got working with the below script.

https://github.com/ArockiaAntony/PythonSnippets/blob/master/youtube_traffic.py



Sent from my A0001 using Tapatalk

5
Hacking and Security / Triggering URL frequently with Tor.
« on: October 10, 2015, 05:42:52 am »
Hi Guys,

I wrote the below code to trigger YouTube URL with diff IP every time to increase the view count.

But sometimes it's happening but most of the time not.

Am I wrong with this objective or with the code?

import os
Import requests

i=0

While i < 10:
    os.system('service tor restart')
    req = requests.get("youtube url")
    res = req.text
    i=i+1




Sent from my A0001 using Tapatalk


Pages: [1]