Skip to content
View KenBab's full-sized avatar
🌌
Astrophotographing
🌌
Astrophotographing

Block or report KenBab

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 Loading

  1. LogCharacterReplacer.py LogCharacterReplacer.py
    1
    fin = open("\file\path.here", "r") 
    2
    fout = open("\file2\path.here", "w")
    3
    for line in fin:
    4
       new_line = line.replace('\t', ' ')
    5
       fout.write(new_line) 
  2. LogCSVconverter.py LogCSVconverter.py
    1
    import csv
    2
    
                  
    3
    with open('logs.txt', 'r') as in_file:
    4
        stripped = (line.strip() for line in in_file)
    5
        lines = (line.split(",") for line in stripped if line)
  3. SentinelDataProducer.py SentinelDataProducer.py
    1
    import json
    2
    import requests
    3
    import datetime
    4
    import hashlib
    5
    import hmac
  4. MSFT-Sentinel MSFT-Sentinel Public

    Forked from Azure/Azure-Sentinel

    Cloud-native SIEM+SOAR for Intelligent security analytics and remediation for Enterprise powered by ML behavioural engine

    Jupyter Notebook 1

  5. LogPartitioner.py LogPartitioner.py
    1
    import argparse, os
    2
    
                  
    3
    def splitter(path, chunk):    
    4
        with open(path,'rb') as f:
    5
            fb = f.read(chunk)