Skip to content

Instantly share code, notes, and snippets.

View jcran's full-sized avatar
💭
feelin fancy

Jonathan Cran jcran

💭
feelin fancy
View GitHub Profile
@jcran
jcran / rss_hackerone_hacktivity.py
Last active November 13, 2024 03:33 — forked from tetrillard/rss_hackerone_hacktivity.py
HackerOne Hacktivity - recent url monitor
import logging
import re
import json
import asyncio
import requests
#
# including these methods as wrappers around requests method
#
@jcran
jcran / rss_hackerone_hacktivity.py
Created November 13, 2024 03:30 — forked from tetrillard/rss_hackerone_hacktivity.py
HackerOne Hacktivity to RSS feed
#!/usr/bin/env python3
import sys
import requests
import urllib3
import json
import re
from types import SimpleNamespace as Namespace
from feedgen.feed import FeedGenerator
output = ''
{
"value": {
"known_technology_regex": [
"Server: Nginx 1.2.2",
"Via: Varnish 1.1",
"data-react-helmet=\"true\" rel=\"stylesheet\"",
"Via: 1.1 4a3448a83573e51d340356257951f57a.cloudfront.net (CloudFront)",
"/etc.clientlibs/clientlibs/granite/jquery.lc-[a-f0-9]{32}-lc.min.js",
"/etc.clientlibs/clientlibs/granite/utils.lc-[a-f0-9]{32}-lc.min.js",
"/etc.clientlibs/clientlibs/granite/jquery/granite.lc-[a-f0-9]{32}-lc.min.js",
{
"value": {
"known_technology_regex": [
"Server: AkamaiNetStorage",
"href=\"https://assets.onestore.ms/cdnfiles/external/mwf/long/v1/v1.25.0/css/mwf-west-european-default.min.css\"",
"src=\"https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js\""
],
"known_technology_regex_reasons": [
"Identifies the server as AkamaiNetStorage",
"Identifies the use of Microsoft's Fluent Design System (MWF)",
@jcran
jcran / 1
Created July 17, 2024 22:46
asdfxasdf
test
@jcran
jcran / 1
Created July 17, 2024 22:37
asdf
test
@jcran
jcran / 1
Created July 17, 2024 22:36
asdf
test
@jcran
jcran / test
Created December 23, 2021 02:42
did:3:kjzl6cwe1jw147tzwskpaew9s0e292hpq6pr1y4o5oma3pxn5ybok1yqkf81ixc
@jcran
jcran / test
Created December 23, 2021 02:42
did:3:kjzl6cwe1jw147tzwskpaew9s0e292hpq6pr1y4o5oma3pxn5ybok1yqkf81ixc
@jcran
jcran / git_branch_naming.md
Last active October 20, 2021 18:53 — forked from revett/git_branch_naming.md
Git Branch Naming Conventions

<type>/<name>

<type>

bug    - Code changes linked to a known issue.
feat   - New feature.
hotfix - Quick fixes to the codebase.
spike   - Spikes (will probably not be merged - just investigating / testing before moving to a feature branch).