worstperson
worstperson
Sorry that wasn't very clear. I quickly realized that you wouldn't accept the original PoC shortly after posting, so I hurriedly fixed the dns server conflict and added it at...
I think some kernels in the wild are built without CONFIG_IKCONFIG_PROC enabled, I'm not sure it's a good idea to rely on it. Edit: Or maybe missing gunzip binaries and...
Before Android 8, USB was configured through /sys/class/android_usb/android0/ compared to the current path /config/usb_gadget/*/. USB functions should be configurable through props and one or more init.usb.rc files. Any additional features...
It looks like your phone doesn't have the usb_gadget module. I think the minsdk for this project is set to 23, but it almost certainly will not run pre-Oreo. https://source.android.com/devices/tech/config/usb-hal
My situation is a little different since I'm sharing the connection through NAT, but I assign my addresses from the 2001:DB8::/32 range rather than ULA(FC00::/7). This is a reserved bogon...
He concatenated the dependencies and scripts together into a single script, so he could comment out the require command. Not very elegant imo.
Assuming this was a very simple test since no code was shared. Might have to do with changes made in 3.12, idk, 3.11 initially broke support too. I'll force an...
Sorry, I didn't have a solution so I avoided replying. It's crashing because of a change in the bytecode described here https://docs.python.org/3/library/dis.html#opcode-LOAD_ATTR corresponding to this line of the disassembly `14...
Seems your last attempt found the problem: Date.prototype.setDate is not defined and is used in line 166 of ssf.js I'll have to look at the spec to see what should...
I made this hacky implementation for now: ``` def setDate(date): check_date(this) t = UTCToLocal(this.value) dt = date.to_number() time = MakeTime(Number(HourFromTime(t)), Number(MinFromTime(t)), Number(SecFromTime(t)), Number(msFromTime(t))) newDate = MakeDate(MakeDay(Number(YearFromTime(t)), Number(MonthFromTime(t)), dt), time) u...