Skip to content

Instantly share code, notes, and snippets.

View riza's full-sized avatar
⚒️
dirty stuff

Rıza Sabuncu riza

⚒️
dirty stuff
View GitHub Profile
@jhaddix
jhaddix / ffufone.json
Created March 8, 2023 20:48
Axiom ffuf module to scan one host vertically
[{
"command":"/home/op/go/bin/ffuf -w input -rate 8 -of csv -o _output_/_cleantarget_ -ac -u ",
"ext":"csv",
"threads":"10"
}]
@om3rcitak
om3rcitak / readme.md
Last active June 1, 2024 12:25
Jenkins Laravel Artisan Commands in GIT Commit Message

Jenkins Laravel Artisan Commands in GIT Commit Message

Code Snippet

How to use?

Jenkins Configuration

  1. Create a new Job or Pipeline.
  2. Go to "Build" tab.
  3. Add build step > Execute shell
_______________LevelUp 0x02 - Bug Bounty Hunter Methodology v3_______________
--IP Space--
Find IP range by keyword:
http://bgp.he.net
Registered IP's and Domains:
https://whois.arin.net/ui/query.do
https://apps.db.ripe.net/db-web-ui/#/fulltextsearch
@fracasula
fracasula / context_cancel.go
Last active May 19, 2022 20:49
GoLang exiting from multiple go routines with context and wait group
package main
// Here's a simple example to show how to properly terminate multiple go routines by using a context.
// Thanks to the WaitGroup we'll be able to end all go routines gracefully before the main function ends.
import (
"context"
"fmt"
"math/rand"
"os"
@EdOverflow
EdOverflow / gitgrepper
Created April 19, 2018 15:27
Simple Bash script to find interesting data in GIT logs.
#!/bin/bash
echo "*** Running..."
keywords=(
"password"
"key"
"passwd"
"secret"
)
@hassansin
hassansin / request-response.go
Last active April 13, 2023 10:44
Request-response pattern over asynchronous protocol using Go channel
package main
import (
"errors"
"fmt"
"math/rand"
"net/http"
"sync"
"time"
@grimzy
grimzy / git-pull-all
Created September 15, 2017 02:15
Git pull all remote branches
#!/usr/bin/env bash
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
@kartagis
kartagis / README.md
Created February 16, 2017 06:31 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@riza
riza / yasar.js
Last active January 19, 2020 09:04
$("input[type=radio][value=5]").prop("checked",true);$("input[type=radio][value=99]").prop("checked",true);$("input[type=text]").not("[disabled]").val("bu nedir?");$("select").val(5); __doPostBack('btnPB','');
package main
import (
"github.com/gin-gonic/contrib/sessions"
"github.com/gin-gonic/gin"
"log"
"net/http"
"strings"
)