worstperson
worstperson
Mygod is right, making a simple Xposed module or framework patcher is for sure the best approach, it's not VPN Hotspot's fault Android does this. I spent some time to...
@Mygod It only supports static configurations, clients that have DHCP enabled will be served addresses from the original range. It is not reversible(must disable and enable tethering) since it removes...
No luck here, though I could be just dumb. The interface gets created and assigned, seems to be a single address assignment though. staticip Link encap:Ethernet HWaddr ae:0c:ad:fb:72:98 inet addr:10.78.2.173...
Ok, scratch that. Added a cidr to the default address and it sets up the address and route correctly now. Still not getting any traffic to pass between the client...
When you get "WARNING! bad rela offset" apply_elf64_rela() exits early. It (or something else) normally inserts relative_base_address between kallsyms_offsets and kallsyms_num_syms__offset, but hasn't in this case, which causes find_kallsyms_addresses_or_symbols() to...
It's kind of difficult as the code explicitly tries to make no assumptions about the contents, though all the samples I've seen are in order or reverse order. The way...
This is a JavaScript interpreter. If you want to interface with and run code in a browser, use something like Selenium instead.
This depends on ES6 Promise support before it can be added: https://github.com/PiotrDabkowski/Js2Py/issues/273 The await keyword looks like it's blocking, so we'd probably need to implement threading for it to work.
I suppose by becoming so motivated to get your code running that you pull up the specifications and produce patches to try and implement those features. Threading in particular is...
For me, it looks like killing the thread with a trace should work. It's also possible to inject a variable check in the body of translated iteration statements to conditionally...