Skip to content

Commit

Permalink
Fix npm module parsing issues caused by broken spec (#11)
Browse files Browse the repository at this point in the history
* Adds `omitempty` tag to PackageJSON fields

* Adds comments to exported types and methods

* Simplifies range expressions

* Adds godoc comments

* Handle JSON parsing issues due to broken spec gracefully

Co-authored-by: n0ncetonic <n0ncetonic@users.noreply.github.com>
  • Loading branch information
joohoi and n0ncetonic committed Feb 15, 2021
1 parent 6954d49 commit 94de6a7
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 16 deletions.
7 changes: 6 additions & 1 deletion interfaces.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
package main

// A PackageResolver resolves package information from a file
//
// ReadPackagesFromFile should take a filepath as input and parse relevant package information into a struct and then return any errors encountered while reading or unmarshalling the file.
//
// PackagesNotInPublic should determine whether or not a package is not available in a public package repository and return a slice of all packages not available in a public package repository.
type PackageResolver interface {
ReadPackagesFromFile(string) error
PackagesNotInPublic() []string
}
}
9 changes: 9 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
Package main implements an automated Dependency Confusion scanner.
Original research provided by Alex Birsan.
Original blog post detailing Dependency Confusion : https://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610 .
*/
package main

import (
Expand Down Expand Up @@ -41,10 +48,12 @@ func main() {
PrintResult(resolver.PackagesNotInPublic())
}

// Help outputs tool usage and help
func Help() {
fmt.Printf("Usage:\n %s [-l LANGUAGENAME] depfilename.ext\n", os.Args[0])
}

// PrintResult outputs the result of the scanner
func PrintResult(notavail []string) {
if len(notavail) == 0 {
fmt.Printf("[*] All packages seem to be available in the public repositories. \n\n" +
Expand Down
34 changes: 23 additions & 11 deletions npm.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,30 @@ import (
"time"
)

// PackageJSON represents the dependencies of an npm package
type PackageJSON struct {
Dependencies map[string]string `json:"dependencies"`
DevDependencies map[string]string `json:"devDependencies"`
PeerDependencies map[string]string `json:"peerDependencies"`
BundledDependencies []string `json:"bundledDependencies"`
BundleDependencies []string `json:"bundleDependencies"`
OptionalDependencies map[string]string `json:"optionalDependencies"`
Dependencies map[string]string `json:"dependencies,omitempty"`
DevDependencies map[string]string `json:"devDependencies,omitempty"`
PeerDependencies map[string]string `json:"peerDependencies,omitempty"`
BundledDependencies []string `json:"bundledDependencies,omitempty"`
BundleDependencies []string `json:"bundleDependencies,omitempty"`
OptionalDependencies map[string]string `json:"optionalDependencies,omitempty"`
}

type NPMLookup struct{
// NPMLookup represents a collection of npm packages to be tested for dependency confusion.
type NPMLookup struct {
Packages []string
Verbose bool
Verbose bool
}

// NewNPMLookup constructs an `NPMLookup` struct and returns it.
func NewNPMLookup(verbose bool) PackageResolver {
return &NPMLookup{Packages: []string{}, Verbose: verbose}
}

// ReadPackagesFromFile reads package information from an npm package.json file
//
// Returns any errors encountered
func (n *NPMLookup) ReadPackagesFromFile(filename string) error {
rawfile, err := ioutil.ReadFile(filename)
if err != nil {
Expand All @@ -34,7 +40,7 @@ func (n *NPMLookup) ReadPackagesFromFile(filename string) error {
data := PackageJSON{}
err = json.Unmarshal([]byte(rawfile), &data)
if err != nil {
return err
fmt.Printf(" [W] Non-fatal issue encountered while reading %s : %s\n", filename, err)
}
for pkgname := range data.Dependencies {
n.Packages = append(n.Packages, pkgname)
Expand All @@ -53,6 +59,9 @@ func (n *NPMLookup) ReadPackagesFromFile(filename string) error {
return nil
}

// PackagesNotInPublic determines if an npm package does not exist in the public npm package repository.
//
// Returns a slice of strings with any npm packages not in the public npm package repository
func (n *NPMLookup) PackagesNotInPublic() []string {
notavail := []string{}
for _, pkg := range n.Packages {
Expand All @@ -63,6 +72,9 @@ func (n *NPMLookup) PackagesNotInPublic() []string {
return notavail
}

// isAvailableInPublic determines if an npm package exists in the public npm package repository.
//
// Returns true if the package exists in the public npm package repository.
func (n *NPMLookup) isAvailableInPublic(pkgname string, retry int) bool {
if retry > 3 {
fmt.Printf(" [W] Maximum number of retries exhausted for package: %s\n", pkgname)
Expand All @@ -73,7 +85,7 @@ func (n *NPMLookup) isAvailableInPublic(pkgname string, retry int) bool {
}
resp, err := http.Get("https://registry.npmjs.org/" + pkgname + "/")
if err != nil {
fmt.Printf(" [W] Error when trying to request https://registry.npmjs.org/" + pkgname + "/ : %s\n", err)
fmt.Printf(" [W] Error when trying to request https://registry.npmjs.org/"+pkgname+"/ : %s\n", err)
return false
}
if n.Verbose {
Expand All @@ -88,4 +100,4 @@ func (n *NPMLookup) isAvailableInPublic(pkgname string, retry int) bool {
n.isAvailableInPublic(pkgname, retry)
}
return false
}
}
19 changes: 15 additions & 4 deletions pip.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,20 @@ import (
"strings"
)

type PythonLookup struct{
// PythonLookup represents a collection of python packages to be tested for dependency confusion.
type PythonLookup struct {
Packages []string
Verbose bool
Verbose bool
}

// NewPythonLookup constructs a `PythonLookup` struct and returns it
func NewPythonLookup(verbose bool) PackageResolver {
return &PythonLookup{Packages: []string{}, Verbose: verbose}
}

// ReadPackagesFromFile reads package information from a python `requirements.txt` file
//
// Returns any errors encountered
func (p *PythonLookup) ReadPackagesFromFile(filename string) error {
rawfile, err := ioutil.ReadFile(filename)
if err != nil {
Expand Down Expand Up @@ -45,6 +50,9 @@ func (p *PythonLookup) ReadPackagesFromFile(filename string) error {
return nil
}

// PackagesNotInPublic determines if a python package does not exist in the pypi package repository.
//
// Returns a slice of strings with any python packages not in the pypi package repository
func (p *PythonLookup) PackagesNotInPublic() []string {
notavail := []string{}
for _, pkg := range p.Packages {
Expand All @@ -68,13 +76,16 @@ func (p *PythonLookup) pipSplit(r rune) bool {
return inSlice(r, delims)
}

// isAvailableInPublic determines if a python package exists in the pypi package repository.
//
// Returns true if the package exists in the pypi package repository.
func (p *PythonLookup) isAvailableInPublic(pkgname string) bool {
if p.Verbose {
fmt.Print("Checking: https://pypi.org/project/" + pkgname + "/ : ")
}
resp, err := http.Get("https://pypi.org/project/" + pkgname + "/")
if err != nil {
fmt.Printf(" [W] Error when trying to request https://pypi.org/project/" + pkgname + "/ : %s\n", err)
fmt.Printf(" [W] Error when trying to request https://pypi.org/project/"+pkgname+"/ : %s\n", err)
return false
}
if p.Verbose {
Expand All @@ -84,4 +95,4 @@ func (p *PythonLookup) isAvailableInPublic(pkgname string) bool {
return true
}
return false
}
}

0 comments on commit 94de6a7

Please sign in to comment.