Giter Club home page Giter Club logo

Comments (13)

wulie avatar wulie commented on July 23, 2024 1

from go-fuzz.

wulie avatar wulie commented on July 23, 2024 1

from go-fuzz.

wulie avatar wulie commented on July 23, 2024 1

from go-fuzz.

josharian avatar josharian commented on July 23, 2024

i just pushed a few commits that should help with this. please make sure you've got the very latest version of go-fuzz and try again. if that doesn't work, please provide a public-code-only complete fuzz file that doesn't build. thanks.

from go-fuzz.

yqiao18 avatar yqiao18 commented on July 23, 2024

Hello,
Is this command to get the latest version of go-fuzz?
go install github.com/dvyukov/go-fuzz/go-fuzz@latest github.com/dvyukov/go-fuzz/go-fuzz-build@latest
Should I run this command inside the package which I wanna fuzz?

from go-fuzz.

josharian avatar josharian commented on July 23, 2024

go install github.com/dvyukov/go-fuzz/go-fuzz@latest github.com/dvyukov/go-fuzz/go-fuzz-build@latest

that should work

you should be able to run it anywhere 

from go-fuzz.

yqiao18 avatar yqiao18 commented on July 23, 2024

I still get the same problem. "misplaced compiler directive"

from go-fuzz.

josharian avatar josharian commented on July 23, 2024

if that doesn't work, please provide a public-code-only complete fuzz file that doesn't build.

from go-fuzz.

yqiao18 avatar yqiao18 commented on July 23, 2024

package integration

import (
"crypto/x509"
)

func Fuzz(data []byte) int {
// Call the function you want to fuzz, e.g., x509.ParseCertificateRequest
_, err := x509.ParseCertificateRequest(data)
if err != nil {
return 0 // Tell go-fuzz this input didn't trigger a panic
}
return 1 // This input is interesting
}
I can successfully run the go-fuzz github's example, but cannot run the above code

from go-fuzz.

josharian avatar josharian commented on July 23, 2024

sigh. i've fixed this bug so many times in so many ways. i'll look again next time i have the heart to. if you want to tackle it yourself, take a look at 7356175 and b1ce7bc -- the fix is very likely to be similar, and in the same area of code.

from go-fuzz.

yqiao18 avatar yqiao18 commented on July 23, 2024

The fix your provided to me is already there in the latest version of go-fuzz. However, I still have the same error:
/usr/local/go/src/crypto/internal/bigmod/nat_asm.go:21: misplaced compiler directive

Should I change the go-fuzz version to 1.14?

from go-fuzz.

hrissan avatar hrissan commented on July 23, 2024

I'm getting the same bug with the following latest versions

go.sum:
github.com/dvyukov/go-fuzz v0.0.0-20240203152606-b1ce7bc07150 h1:8ww/RtfHmtJSLk7nK/TspKZDdgDvvXwp0JMIIhJF35s=
github.com/dvyukov/go-fuzz v0.0.0-20240203152606-b1ce7bc07150/go.mod h1:11Gm+ccJnvAhCNLlf5+cS9KjtbaD5I5zaZpFMsTHWTw=

go install github.com/dvyukov/go-fuzz/go-fuzz@latest github.com/dvyukov/go-fuzz/go-fuzz-build@latest

$ ~/go/bin/go-fuzz-build
failed to execute go build: exit status 1

crypto/internal/bigmod

/usr/local/go/src/crypto/internal/bigmod/nat_asm.go:21: misplaced compiler directive

from go-fuzz.

hrissan avatar hrissan commented on July 23, 2024

There is an workaround. You can avoid transpiling module in question.

$ ~/go/bin/go-fuzz-build -preserve crypto/internal/bigmod

from go-fuzz.

Related Issues (20)

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.