Skip to content
/ magic Public

🎩🐇 Toolkit for detecting and verifying file type using magic bytes in pure Golang

License

Notifications You must be signed in to change notification settings

liamg/magic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

magic

Toolkit for detecting and verifying file type using magic bytes in pure Go

Support for all file signatures listed here.

You only need to provide the first few hundred bytes of a given file to detect the file type, unless you want to detect .iso images, which require examination of the first 32774 bytes.

A description and a suggested file extension are provided where relevant, and MIME types will be added in future.

Example Usage

package main

import "github.com/liamg/magic"

func main() {

    data := []byte{0xa1, 0xb2, 0xc3, 0xd4, 0x00, 0x00, 0x00, 0x00}

    fileType, err := magic.Lookup(data)
    if err != nil {
        if err == magic.ErrUnknown {
            fmt.Println("File type is unknown")
            os.Exit(1)
        }else{
            panic(err)
        }
    }

    fmt.Printf("File extension:        %s\n", fileType.Extension)
    fmt.Printf("File type description: %s\n", fileType.Description)
}

About

🎩🐇 Toolkit for detecting and verifying file type using magic bytes in pure Golang

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Contributors 3

  •  
  •  
  •  
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy