Steven Penny
Steven Penny
Comments
Is it possible to get comments for a video?
Using this file: https://static.rust-lang.org/dist/rust-1.48.0-x86_64-pc-windows-gnu.msi I can read: ~~~ PS C:\rust-msi-master\target\debug\examples> .\msiinfo streams rust-1.48.0-x86_64-pc-windows-gnu.msi cab1.cab cab2.cab cab3.cab cab4.cab cab5.cab ~~~ but extract fails: ~~~ PS C:\rust-msi-master\target\debug\examples> .\msiinfo extract rust-1.48.0-x86_64-pc-windows-gnu.msi cab1.cab MSCFthread...
It might be helpful to some to add the Msi functions. I have my own implementation here if it helps: https://pkg.go.dev/github.com/89z/x/sys and some other links: - https://docs.microsoft.com/windows/win32/api/msi - https://docs.microsoft.com/windows/win32/api/msiquery -...
If I try to use this: ~~~ frida-sslpinning-disable.js ~~~ with this app: ~~~ com.vimeo.android.videoapp ~~~ and I start the app, it prompts for login. Alternatively you can hit SKIP in...
is SVG output supported?
Is it possible to do something like `git push`?
I think you should update the Readme, as this package cannot currently build on Windows
Is it possible to get post information, from a public page such as this: https://www.instagram.com/p/CT-cnxGhvvO/ without login?
Do you have an Frida scripts for certificate unpinning?
Using this program: ~~~go package main import "strconv" func main() { n, err := strconv.Atoi("99") if err != nil { panic(err) } println(n) _, err = strconv.Atoi("88") } ~~~ With...