Steven Penny

Results 251 comments of Steven Penny

I am still working on a solution, but I have a start. You can make a request like this to get the comments: ~~~ POST /youtubei/v1/next?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8 HTTP/1.1 Host: www.youtube.com {...

I found a better package for encoding: ~~~go package proto import ( "encoding/base64" "github.com/philpearl/plenc" ) type continuation struct { A struct { VideoID string `plenc:"2"` } `plenc:"2"` B uint32 `plenc:"3"`...

This was the simplest example I could come up with. I wrapped the multipart code in a function, as you need to `Close` it before you can make a request:...

You can make a temporary bucket to hold the old IDs. See the issue I linked

This seems to fix it: ~~~diff diff --git a/examples/msiinfo.rs b/examples/msiinfo.rs index ffc2e1e..4a0f18c 100644 --- a/examples/msiinfo.rs +++ b/examples/msiinfo.rs @@ -193,7 +193,8 @@ fn main() { let stream_name = submatches.value_of("stream").unwrap(); let mut...

Instead of patching APKs, have you considered something like Frida [1]? No patching required. You can use the APK straight from Google if you want. I have tested the general...

I dont use Burp Suite, I use MITM Proxy

staticcheck from go-tools does not work with 1.18 at this time

Thanks. I found this tool: https://github.com/microsoft/etl2pcapng but it only works for ETL created by Netsh. Pktmon has a method to convert ETL to PCAP, but only with Windows 10 2004...

In my case, after running this: ~~~ java -jar apktool.jar d app.apk ~~~ You can then edit `AndroidManifest.xml`. With the `application` element, remove this attribute: ~~~xml android:extractNativeLibs="false" ~~~