Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am devbynyden on github.
  • I am bynyden (https://keybase.io/bynyden) on keybase.
  • I have a public key ASBETcJus3vfJmHprEMW3KwS5nA-IPkWaPxGqgq0ccWVNAo

To claim this, I am signing this object:

@devbynyden
devbynyden / 1_OpenwrtWiFreeGuide.md
Last active November 6, 2023 19:18
Setting up openwrt with Telenet WiFree

Setting up openwrt with Telenet WiFree

This guide explains how to setup your openwrt router to interact with Telenet WiFree as a WISP router.
In this case we will connect to WiFree, create a secondary Wifi signal and also have access to the internet on the Lan interface.
WISP Network
With this setup you can have multiple devices connected to the Telenet WiFree Hotspot.

!Important check the Troubleshooting section at the bottom of this page if LAN does not work.

Disclaimer

I only use this at a secondary home. I am not in any way affiliated with Telenet.

@devbynyden
devbynyden / shodan-google-spreadsheet.js
Last active August 29, 2015 14:26 — forked from achillean/shodan-google-spreadsheet.js
Shodan macros for Google Spreadsheets. To use this go to Tools -> Script Editor, then copy/ paste the code. In the spreadsheet you can then do: =SHODAN_COUNT("cisco-ios") =SHODAN_FACET_KEYS("cisco-ios", "org") =SHODAN_FACET_VALUES("cisco-ios", "org")
var API_KEY = 'YOUR API KEY';
/**
* Search the Shodan database using the given query. Returns the number of matches.
*/
function SHODAN_COUNT(query) {
var url = 'https://api.shodan.io/shodan/host/count?key=' + API_KEY + '&query=' + query;
var response = UrlFetchApp.fetch(url);
var data = Utilities.jsonParse(response.getContentText());