Giter Club home page Giter Club logo

golazagne's Introduction

goLazagne


โš  Disclaimer

  1. All information provided in this project is for educational purposes only and can not be used for law violation or personal gain.
  2. The authors of this project are not responsible for any possible harm caused by the materials of this project.
  3. All information in this repository is intended for development of audit tools and help preventing the hack attacks.
  4. We believe only in ethical hacking.

Description

The goLazagne is an open source library for golang used to retrieve passwords stored on local computer.

Inspired by AlessandroZ LaZagne project.

Install

go get github.com/kerbyj/goLazagne

Example

package main

import (
    "github.com/kerbyj/goLazagne"
)

func main() {

    var credentials, _ = goLazagne.ExtractAllData()
    
    println("Browser creds:", len(credentials.BrowserData))
    println("Credman creds:", len(credentials.CredmanData))
    println("Wifi creds:", len(credentials.WifiData))
    
    println("\nEnumerating filesystem. Please wait")
    
    var interestingFiles = []string{
    			"ovpn",
    			"ssh",
    		}
    
    var files = goLazagne.ExtractInterestingFiles(interestingFiles)
    for fileN := range files {
        println(files[fileN])
    }

}

If you want to compile this project on Linux system:

apt install gcc-multilib
apt install gcc-mingw-w64

CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ GOOS=windows GOARCH=amd64 go build -buildmode=exe

Supported features

  • Browsers

    • Chromium-based
    • Mozilla Firefox
    • Internet Explorer and Edge
  • Mail

    • Thunderbird
    • [TBD] Outlook
  • Windows

    • Credential Manager
  • SysAdmin tools (pre alpha, need more tests)

    • Mobaxterm - user, host:port and associated key
    • Putty - user, host:port and associated key
    • Filezilla - user, host:port and password (encrypted if master password isset)
    • Openssh
  • WiFi passwords

ToDo (sorted by priority level)

  • Rewrite Mozilla extractor
  • WPA2 Enterprise. The main difficulty is that we need an privilege escalation. Read more in zc00l research.
  • Windows vault
  • Full outlook support
  • Git

Special thanks

golazagne's People

Contributors

kerbyj avatar t33zer avatar trevilness avatar barrracud4 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.