Skip to content

Instantly share code, notes, and snippets.

View b3nj1-1's full-sized avatar
🏠
Working from home

B3nj1 b3nj1-1

🏠
Working from home
View GitHub Profile
@b3nj1-1
b3nj1-1 / cisco-ios-image-for-gns3.md
Created September 21, 2023 22:10 — forked from takyon12/cisco-ios-image-for-gns3.md
Cisco IOS Image for GNS3

Download FREE Cisco IOS image for GNS3

Hi dear all, that’s really a great to share my hard work with you , After a lots of hit in Google I finally found trick to search Cisco IOS in free of course. So without talking much here are the link where you can free download Cisco ios image and you can upload or use this ios to the router and as well as in GNS3.

Small Collection of IOS Images.

  • ftp://ftp.unikon-ua.net/pub/Cisco/IOS/

{Updated}Big Collection of IOS Images (Almost All Cisco IOS Images)

  • ftp://62.117.115.92/upload/ios/
@b3nj1-1
b3nj1-1 / mem.ps1
Created September 16, 2022 01:45
Check Usage in Powershell
$totalRam = (Get-CimInstance Win32_PhysicalMemory | Measure-Object -Property capacity -Sum).Sum
while($true) {
$date = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
$cpuTime = (Get-Counter '\Processor(_Total)\% Processor Time').CounterSamples.CookedValue
$availMem = (Get-Counter '\Memory\Available MBytes').CounterSamples.CookedValue
$date + ' > CPU: ' + $cpuTime.ToString("#,0.000") + '%, Avail. Mem.: ' + $availMem.ToString("N0") + 'MB (' + (104857600 * $availMem / $totalRam).ToString("#,0.0") + '%)'
Start-Sleep -s 2
}
@b3nj1-1
b3nj1-1 / PowerView-3.0-tricks.ps1
Created April 30, 2022 14:13 — forked from HarmJ0y/PowerView-3.0-tricks.ps1
PowerView-3.0 tips and tricks
# PowerView's last major overhaul is detailed here: http://www.harmj0y.net/blog/powershell/make-powerview-great-again/
# tricks for the 'old' PowerView are at https://gist.github.com/HarmJ0y/3328d954607d71362e3c
# the most up-to-date version of PowerView will always be in the dev branch of PowerSploit:
# https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1
# New function naming schema:
# Verbs:
# Get : retrieve full raw data sets
# Find : ‘find’ specific data entries in a data set

Search Engine

  1. Censys.io
  2. Shodan.io
  3. Viz.Greynoise.io/table
  4. Zoomeye.org
  5. Fofa.so
  6. Onyphe.io
  7. App.binaryedge.io
  8. Hunter.io

Exfiltration

Una definición común de exfiltración de datos es el robo o la eliminación o movimiento no autorizado de cualquier dato de un dispositivo. La exfiltración de datos generalmente involucra a un ciberdelincutivo que roba datos de dispositivos personales o corporativos, como computadoras y teléfonos móviles, a través de varios métodos de ciberataque.

Otro significado de exfiltración de datos es la exportación y extrusión de datos, la fuga de datos o el robo de datos, lo que puede plantear serios problemas para las organizaciones. No controlar la seguridad de la información puede conducir a la pérdida de datos que podría causar daños a la reputación y financieros de una organización.

Tecnicas

  • Secure Copy (SCP) para copiar los archivos a través del protocolo Secure Shell (SSH).
  • Protocolo de transferencia de archivos (FTP) para descargar fácilmente cualquier archivo al que estén autorizados a acceder en el sistema.
  • Network File Share (NFS), que es un sistema de archivos distribuido que se

Sysmon Linux

https://github.com/Sysinternals/SysmonForLinux

ID sysmon

  • Identificador de evento 1: Creación de procesos
  • Identificador de evento 2: Proceso cambió un tiempo de creación de archivos
  • Identificador de evento 3: Conexión de red
  • Identificador de evento 4: Se ha cambiado el estado del servicio Sysmon

I would like to thank those people who contribute to the community. These gists are a compilation.