Ali Naci Erdem

Personal Blog

  • Computers
  • DIY
  • GitHub
  • LinkedIn
  • Support Me

Debugging

Redirect OSX internet sharing traffic

7th May 2017

To be able to eavesdrop to internet sharing traffic, you may use “pf” or packet filtering tool, which is a kind of firewall used by the mac’s operating system. But hold on, why would you need to listen to internet traffic on a wi-fi device? I usually develop for wi-fi enabled devices and knowing what … [Read more…]

Posted in: Computers Tagged: Autostart, Daemon, Debugging, eavesdropping, Firewall, http, https, internet sharing, osx, pf, Programming, proxy

Simple Proxy Server Using Node.js to Bypass CORS

10th December 2016

Node.js is a javascript runtime based on Chromium’s V8 javascript engine. It is really simple to create a basic HTTP server using the node.js API and a web based proxy is just an HTTP server that relays incoming requests back to the original recipient. So we will capture the requests and forward them using a … [Read more…]

Posted in: Computers Tagged: cors, Debugging, JavaScript, js, node, nodejs, Programming, proxy, tutorial