aboutsummaryrefslogtreecommitdiff
path: root/projects/net-snmp
AgeCommit message (Collapse)Author
2021-08-30net-snmp: Simplify the build scripts (#6231)Bart Van Assche
Use the Net-SNMP continuous integration script ci/install.sh to install development packages. Use the Net-SNMP script ci/build.sh to compile the Net-SNMP source code.
2021-08-18net-snmp: Reenable MIB-II and IF-MIB (#6239)Bart Van Assche
Recently the IF-MIB implementation on the Net-SNMP master branch became dependent on libnl-route-3. An unfortunate side effect is that this broke the build of the fuzz tests. Add the pkg-config package such that the configure script can detect libnl-route-3 and reenable MIB-II and IF-MIB.
2021-08-16net-snmp: fix build. (#6229)DavidKorczynski
2021-08-06net-snmp: fix build following upstream changes (#6177)DavidKorczynski
* net-snmp: change location of fuzzers upstream. * remove tmp checkout.
2021-07-29net-snmp: migrate fuzzers upstream. (#6113)DavidKorczynski
* net-snmp: migrate fuzzers upstream. * fix correct upstream link.
2021-07-25[net-snmp] Split and improve snmp_octet_fuzzer (#6111)Bart Van Assche
* [net-snmp] Include <unistd.h> for getpid() * [net-snmp] Split and improve snmp_octet_fuzzer Split snmp_octet_fuzzer into one fuzzer per function to make bug reports easier to interpret. See also commit ded876646013 ("net-snmp: add two new fuzzers and simplify build script. (#6091)")
2021-07-23net-snmp: add two new fuzzers and simplify build script. (#6091)DavidKorczynski
Signed-off-by: David Korczynski <david@adalogics.com>
2021-07-17net-snmp: two new fuzzers and request access to project (#6058)DavidKorczynski
2020-12-10Populate a bunch of main_repo values. (#4815)Oliver Chang
Also enforce this for future integrations.
2020-07-06Update Dockerfiles (#4070)devtty1er
* Use LABEL in place of MAINTAINER * Remove LABEL maintainer from Dockerfiles
2020-03-10[presubmit] Enforce language attribute in project.yaml to be always set. (#3477)Max Moroz
* [presubmit] Enforce language attribute in projectt.yaml to be always set. * Update documentation, better presubmit check, new project template. * add docstring to templates.py * Add example values in the project.yaml template and remove python value for now * Add "project: c++" to 256 projects * format * Add labels and selective_unpack sections to the presubmit check * fix incorrect auto_ccs format in three projects * fix nss emails after rebase
2019-05-01Migrate projects using -lFuzzingEngine to $LIB_FUZZING_ENGINE (#2325)jonathanmetzman
Migrate from -lFuzzingEngine to $LIB_FUZZING_ENGINE where possible and not causing breakage
2018-03-29Add net-snmp project (#1277)fenner
* Initial infrastructure for net-snmp in the AutoFuzz project * Add a fuzzer based on what Google sent us Storing this here until we have a more complete design for storing fuzzers in the net-snmp source tree. * calloc PDU so we can use the standard pdu free, to avoid false leaks * Only turn on debugging when $NETSNMP_DEBUGGING is set in the environment The debugging is useful to help replicate the problem, but not useful when simply running the fuzzer, so let the user choose it by settng $NETSNMP_DEBUGGING in their environment when running the replication. * Add agentx_parse_fuzzer * Build agentx_parse_fuzzer * Add copyright notice, copy boilerplate from init * Don't make a copy, just pass the data in directly. (Also, don't use C++-style comment, the regression test in the net-snmp codebase will be C.)