Hello,
As I've posted before, I'm working in a new version (totally rewritten) of Ratio Faker that should solves all the current problems.
Stills there's no GUI, it's just a console application ... but it has almost the same options that v0.8.2.
Here's some screens on how it looks
One of the biggest changes is the way it listens to incoming connections, now is not necessary to run as an admin (in Windows Vista and 7). Also the http request headers should be now in the same order as an original request, closing this way a vector of detection.
The supported parameters are:
- To set the maximum ratio: max
- To set the minimum ratio: min
- To set the multiplier: upload or download
- To see a really verbose output (only recommended if you need to track a bug): debug
- To set the listening port: port
Let me give you a few examples:
> RatioFaker port 8008 max 5.432 min 1.234 upload
Will set ratio faker to listen on port 8008. Each 1 MB you upload will be reported as a random number between 1.234 MB and 5.432 MB of upload.
> RatioFaker max 5.432 min 1.234 download debug
Will set ratio faker to listen on the default port (which is 8282). Each 1 MB you download will be reported as a random number between 1.234 MB and 5.432 MB of upload. Also you will get a lot of debugging information (like raw request, raw response ...) on screen.
If you launch Ratio Faker without passing any parameter, here are the default value that it will use:
listening port = 8282
min ratio = 0.543
max ratio = 1.497
multiplier = download
debugging = false
Bookmarks