Skip to content
View ritesh's full-sized avatar
πŸ’­
not writing code
πŸ’­
not writing code
Block or Report

Block or report ritesh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Docker compose for ZAP Docker compose for ZAP
    1
    target:
    2
      # The target application we want to scan
    3
      image: szsecurity/webgoat
    4
      # The port that the application is available on.
    5
      # If the application runs on a non-standard port,
  2. List of IAM actions via the policy e... List of IAM actions via the policy editor
    1
    #!/bin/bash
    2
    rm policies.js 
    3
    rm service_actions.txt
    4
    curl -s https://awsiamconsole.s3.amazonaws.com/iam/assets/js/bundles/policies.js -O  && node -e "app={}; EnvInfo ={}; _ = {has: function() {return false;}, extend: function(){},};require('./policies.js'); console.log(JSON.stringify(app));" | jq .PolicyEditorConfig.serviceMap  > service_actions.txt
    5
    python iam_actions.py
  3. Toy fortune server Toy fortune server
    1
    package main
    2
    
                  
    3
    import (
    4
    	"bytes"
    5
    	"log"
  4. Grub boot for Debian 7.4 Grub boot for Debian 7.4
    1
    menuentry "Debian 7.4 Live" {
    2
             set isofile="/home/ritesh/Downloads/debian-live-7.4-amd64-xfce-desktop.iso"
    3
             # Change partition if needed to hd whatever
    4
             loopback loop (hd0,5)$isofile
    5
             linux (loop)/live/vmlinuz boot=live config toram=filesystem.squashfs findiso=$isofile
  5. s3signer s3signer
    1
    package main
    2
    
                  
    3
    import (
    4
    	"flag"
    5
    	"fmt"