Alptekin Gülcan

Results 16 comments of Alptekin Gülcan

I solved by re-install raspbian stretch. "sudo patch" isn't useful. You should find another method. Every installation is causing the fault.

```sh pi@raspberry:~ $ cd /tmp pi@raspberry:/tmp $ git clone https://github.com/farukuzun/notsodeep.git Cloning into 'notsodeep'... remote: Counting objects: 27, done. remote: Total 27 (delta 0), reused 0 (delta 0), pack-reused 27 Unpacking...

try [this](https://github.com/seclab-ucr/INTANG)

When I deleted and recreated the project, gdb worked. However, after the gdb connection, the thread list appears empty and debugging cannot be done. It seems that there is a...

I was unable to solve it. The root cause appears to be related to GDB. If they are able to solve the JDWP issue, then I will attempt it again....

[follow-redirects]( https://github.com/follow-redirects/follow-redirects/blob/main/index.js): ``` if (redirectUrl.protocol !== currentUrlParts.protocol && redirectUrl.protocol !== "https:" || redirectUrl.host !== currentHost && !isSubdomain(redirectUrl.host, currentHost)) { removeMatchingHeaders(/^(?:(?:proxy-)?authorization|cookie)$/i, this._options.headers); } ``` I found the reason for the problem:...

``` const proxy = createProxyMiddleware({ ssl: { beforeRedirect: (options, response, request) => { options.headers["Cookie"] = 'mycookie=test'; } } target: 'https://www.example.com/', changeOrigin: true, agent, autoRewrite: true, followRedirects: true, selfHandleResponse: true, headers:...

Chrome: crash id:`b180583f32e07283` I tried "Google Chrome for Testing" and got the same error.

```javascript function swap2(aURL) { const url = typeof aURL === 'string' ? aURL : toString(aURL); if (stringStartsWith(url, 'blob')) { if (!blobs.has(url)) { const content = syncGet(url); const preloadURL = createObjectURL(new...

I got confused because `MutationObserver` was used in [that project](https://github.com/schomery/popup-blocker/blob/master/v3/data/inject/block/main.js), which caused me to be misled. Your explanation helped me understand, thank you.