Extend/combine 2 C# .net Apps 25.08.08
I have two tools that have been developed in C# as a command line tool.
Tool 1: places a search query on a search engine and reads the search result pages. It then extracts and outputs all hostnames to a txt file.
Tool2: loads a webpage and checks the html from this webpage and associated JavaScripts for a certain string. It outputs whether the string has been found or not.
Both tools have to be integrated into one tool so that the outcome of a query in tool 1 is being parsed by tool 2 before the next query is being fired in tool 1.
Some new features have to be added;
- ability to stop and start whenever I want, the tool should resume where it stopped so that I can use it as a startup application in Windows
- use of proxy servers should be possible by adding a TXT file list of proxy servers the application should choose from randomly
- there should be an option to wait a random amount of time between x and x seconds before tool 1 fires a request to prevent blocking
- a small bug in tool 2 where it sometimes forms the url to check contents of JavaScript files incorrectly, should be solved
I will provide both applications and source code of what has already been developed.
The programmer has to provide me a working C# project (full code).