This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <signal.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/ipc.h> | |
#include <sys/shm.h> | |
/*If he causes any problem, do a `kill -9 <Neighbour ID> on a separate terminal.*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <signal.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/ipc.h> | |
#include <sys/shm.h> | |
/*the tree is made to demonstrate some time lapse after the user inputs the action. | |
After the user input the process will TAKE SOMETIME to send the signal through shared memory route*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import pytz | |
import datetime | |
from telegram import Update | |
from telegram.ext import Updater, CommandHandler, CallbackContext | |
API_KEY = "API TOKEN" | |
logging.basicConfig( | |
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### CREDS | |
email='user_email' | |
org_name='org' | |
echo 'from shortcut.com workspace web portal, go to inspect -> storage -> enter the following cookies' | |
echo 'Enter ajs_anonymous_id cookie: ' | |
read ajs_anonymous_id | |
echo 'Enter ajs_user_id' | |
read ajs_user_id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
cleanup() { | |
rm -f "$iam_output_file" "$jq_output_file" | |
} | |
trap 'cleanup' 0 1 2 15 # cleanup tmp files in case script ends upbruptly. | |
usage() { # Function: Print a help message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import requests | |
import sys | |
import json | |
def getlist(token, page_no = 10): | |
group_id = "" | |
data = "" | |
data_json = [] | |
data_list = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#this script transfers log files from s3 bucket to desired remote server | |
DIR = '~/var/logs' | |
COPIED_TO = '' | |
ssh remote_user@<IP> find $DIR -maxdepth <max depth here> -mtime -$1 -mtime +$2 -type f > loglist.txt | |
while read -r line | |
do | |
rsync -chavzP --stats [email protected]:$line $COPIED_TO | |
done < loglist.txt | |
aws s3 cp $COPIED_TO s3://bucket/ --recursive \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Usage: | |
#./getusers.sh <TOKEN> <GROUP ID> | |
# | |
i=1 | |
rm users ids final | |
while [[ $i -ne 10 ]] | |
do | |
curl -s --header "PRIVATE-TOKEN: $1" "https://gitlab.com/api/v4/groups/$2/projects?simple=true&order_by=last_activity_at&pagination=keyset&per_page=100&page=$i" | jq -r '.[]|.id' > ids | |
while read -r line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
import json | |
import datetime | |
PREFIX = "" | |
client_1 = boto3.client('s3') | |
client_2 = boto3.client('sqs', | |
aws_access_key_id='KEY', | |
aws_secret_access_key='KEY' | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while inotifywait -e modify /var/log/auth.log; | |
do | |
word=`tail -n1 /var/log/auth.log | grep 'user NOT in sudoers'` | |
if [[ $word ]]; then | |
echo '{"text":"'$word'"}' > sendtoslack | |
curl -X POST \ | |
-H 'Content-type: application/json' \ | |
--data @sendtoslack \ | |
<webhook url> |
OlderNewer