Every fully-qualified name registered in the SDK. Search by class name, import path, or framework. Copy the FQN directly into your fqns = [...] field.
633 of 633 classes
GoGinContextGoRepresents gin.Context, the primary request/response carrier in the Gin HTTP framework. All user-input accessors (Query, Param, PostForm, etc.) are taint sources. Output methods (JSON, String, Redirect) are sinks for XSS and open-redirect rules.
GoEchoContextGoRepresents echo.Context in the Echo HTTP framework (v4). Provides typed accessors for all parts of the HTTP request. All input methods are taint sources.
GoFiberCtxGoRepresents fiber.Ctx in the Fiber HTTP framework (v2), inspired by Express.js. Zero-allocation design. All input methods are taint sources.
GoGormDBGoRepresents gorm.DB, the primary database handle in GORM v2. Raw(), Exec(), and Where() with string arguments are SQL injection sinks when called with unsanitized user input.
GoSqlxDBGoRepresents sqlx.DB and sqlx.Tx from the sqlx library, which extends database/sql with struct scanning. Unsafe query methods (QueryUnsafe, GetUnsafe) and raw string methods are injection sinks.
GoSQLDBGoRepresents database/sql.DB and database/sql.Tx from the Go standard library. Query(), Exec(), and Prepare() are SQL injection sinks when the query string is built from user input instead of using ? placeholders.
GoStrconvGoThe strconv standard library package. Atoi, ParseInt, ParseFloat, and related functions serve as sanitizers in SQL injection and path traversal rules — converting a string to a numeric type eliminates injection risk.
GoOSExecGoThe os/exec standard library package. exec.Command and exec.CommandContext are command injection sinks when any argument comes from user-controlled input. Most dangerous with shell=true-equivalent patterns.
GoHTTPRequestGoRepresents *http.Request from the net/http standard library. Used in standard http.HandlerFunc handlers. FormValue, URL.Query(), Header.Get(), and Body are all taint sources.
GoRestyClientGoRepresents resty.Client and resty.Request from go-resty/resty v2. SetURL, Execute, Get, Post etc. are SSRF sinks when the URL comes from user-controlled input.
GoJWTTokenGoRepresents jwt.Token from github.com/golang-jwt/jwt v5. The Valid field and Parse function are critical — rules detect patterns where signature verification is skipped.
GoHTTPResponseWriterGoRepresents net/http.ResponseWriter. Write() and WriteString() are XSS sinks when writing unsanitized user input into the HTTP response body.
GoHTTPClientGoRepresents net/http.Client. Do(), Get(), Post() are SSRF sinks when the URL comes from user input.
GoOSGoThe os standard library package. Getenv() is a source of environment variable data. Open(), Create(), Remove() are file operation sinks for path traversal.
GoFilepathGoThe path/filepath standard library package. Join(), Abs(), Clean() are used as sanitizers in path traversal rules when combined with containment checks.
GoFmtGoThe fmt standard library package. Sprintf, Fprintf, Sscanf are sources of formatted string data. Fprintf to http.ResponseWriter is an XSS sink.
GoTemplateGoRepresents html/template.Template and text/template.Template. Execute() and ExecuteTemplate() are XSS sinks when data contains unsanitized user input passed to text/template (not html/template).
GoCryptoGoWeak cryptographic algorithms: crypto/md5, crypto/sha1, crypto/des, crypto/rc4. All New() and Sum() calls are findings — these algorithms are cryptographically broken.
GoContextGoRepresents context.Context. Value() can propagate tainted data stored by upstream handlers — treat returned values as taint sources in inter-procedural analysis.
GoBufioReaderGobufio.Reader wraps an io.Reader with buffering. ReadString() and ReadLine() are sources when the underlying reader is an HTTP request body or stdin.
GoBufioScannerGobufio.Scanner reads tokens line-by-line. Text() and Bytes() are sources when the scanner wraps user-controlled input (stdin, HTTP body).
GoIOReaderGoio.Reader interface. ReadAll() from io package returns the full content of a reader — source of taint when the reader wraps HTTP request body.
GoNetURLGonet/url package. Parse() returns a *url.URL from a string — source of taint when parsing user-supplied URLs. Used in SSRF detection for URL validation.
GoNetDialGonet.Dial and net.DialTCP create network connections. Dial() is an SSRF sink when the address is user-controlled.
GoNetTLSGocrypto/tls package. Config.InsecureSkipVerify = true disables certificate verification — a finding for all production code.
GoEncodingBase64Goencoding/base64 package. DecodeString() decodes user input — the result is still tainted and must be sanitized before use in sinks.
GoEncodingHexGoencoding/hex package. DecodeString() converts hex to bytes — does not sanitize taint. EncodeToString() may be used as a sanitizer in specific contexts.
GoEncodingJSONGoencoding/json package. Unmarshal and Decoder.Decode() are sources of tainted data from JSON input. Marshal() propagates taint to output.
GoEncodingXMLGoencoding/xml package. Unmarshal and Decoder.Decode() are sources. Can also be an XXE sink if xml.Decoder is used without disabling external entity processing.
GoEncodingCSVGoencoding/csv package. Reader.Read() and Reader.ReadAll() return user-controlled CSV data as string slices — treat as taint sources.
GoEncodingBinaryGoencoding/binary package. Read() deserializes binary data from a reader — source of taint when the reader is network or user input.
GoEncodingGobGoencoding/gob package. Decoder.Decode() deserializes arbitrary Go types — unsafe deserialization sink when decoding untrusted data.
GoMimeMultipartGomime/multipart package. Reader.ReadForm() parses multipart form data including file uploads — source of user-controlled filenames and content.
GoHTTPMuxGonet/http.ServeMux is the HTTP request multiplexer. Handle() and HandleFunc() register handlers — not typically a security sink but relevant for routing analysis.
GoHTTPServerGonet/http.Server. ListenAndServe() without TLS is a finding in server configurations that should enforce HTTPS.
GoHTTPCookieGonet/http.Cookie struct. Missing Secure, HttpOnly, or SameSite flags are security findings for session cookies.
GoNetSMTPGonet/smtp package. SendMail() and SMTP.Mail() are email injection sinks when headers or body are built from user input without sanitization.
GoLogGolog standard library package. Printf, Println, and Fatal variants may log sensitive user input — a finding for privacy/compliance rules.
GoLogSlogGolog/slog package (Go 1.21+). Structured logging — Info, Warn, Error are log injection sinks when message or attributes contain unsanitized user input.
GoStringsGostrings package. Contains(), HasPrefix(), ReplaceAll() are used as partial sanitizers. Builder is used to construct tainted strings.
GoRegexpGoregexp package. FindString() and FindAllString() return tainted matches. MustCompile() with user-controlled pattern is a ReDoS risk.
GoMathRandGomath/rand package. Intn(), Float64() and related functions use a deterministic PRNG — a finding when used for cryptographic purposes (tokens, session IDs).
GoCryptoRandGocrypto/rand package. The Reader is the cryptographically secure random source — use this instead of math/rand for tokens and session IDs.
GoSyncGosync package. Mutex, RWMutex, Once — not security sinks but relevant for race condition detection rules.
GoSyncMapGosync.Map provides a concurrent map. Load() and Store() are relevant for data flow tracking in concurrent handlers where shared state is modified.
GoReflectGoreflect package. reflect.ValueOf() and reflect.New() with user-controlled type strings enable dynamic code execution — a finding for unsafe reflection rules.
GoRuntimeGoruntime package. SetFinalizer(), GOMAXPROCS() — not typical security sinks but relevant for resource exhaustion rules.
GoOSUserGoos/user package. Lookup() and LookupId() resolve usernames — source of OS-level user data. Relevant for privilege escalation analysis.
GoSyscallGosyscall package. Exec(), RawSyscall(), and socket operations are low-level command and network injection sinks.
GoIOFSGoio/fs package (Go 1.16+). FS interface and ReadFile() operate on filesystem abstractions — path traversal sinks when path is user-controlled.
GoHTMLTemplateGohtml/template package — the safe version of text/template. Auto-escapes context-appropriately. HTML(), JS(), URL() types are escape bypasses when used with user input.
GoNetHTTPGoPackage-level net/http functions: Get(), Post(), Head(). SSRF sinks when the URL argument is derived from user input.
GoArchiveTarGoarchive/tar package. Reader.Next() returns headers with user-controlled filenames — Zip Slip path traversal sink when extracting to filesystem.
GoArchiveZipGoarchive/zip package. OpenReader() and File[].Name are sources of user-controlled filenames — Zip Slip path traversal when extracting.
GoDatabaseSQLGoAlias reference: database/sql.Stmt. Prepared statement execution methods — safe when using ? placeholders, sink when mixing with string concatenation.
GoTimeGotime package. time.Parse() with user-controlled layout strings is a denial-of-service risk (algorithmic complexity). Not a typical injection sink.
GoPluginGoplugin package. Open() loads a shared library — code execution sink when the plugin path is user-controlled.
GoCryptoHMACGocrypto/hmac package. New() creates HMAC with a key. Equal() provides constant-time comparison. Using == instead of Equal() for MAC verification is a timing attack.
GoCryptoAESGocrypto/aes package. NewCipher() with a weak mode (ECB, CBC without IV) is a cryptographic weakness finding.
GoCipherGCMGocipher package. NewGCMWithNonceSize() and AEAD.Seal() — finding when nonce is reused or predictable.
GoX509Gocrypto/x509 package. Certificate.Verify() is the TLS chain validation entry point. Skipping verification or using empty VerifyOptions is a finding.
GoGobDecoderGoencoding/gob.Decoder. Decode() deserializes arbitrary Go values — unsafe deserialization when decoding user-supplied bytes.
GoChiRouterGoChi HTTP router (chi.Router and chi.Mux). Path parameters extracted via URLParam are taint sources. Chi is one of the most popular lightweight routers in the Go ecosystem.
GoGorillaMuxRouterGoGorilla mux HTTP router (mux.Router). Path variables extracted via mux.Vars(r) are taint sources. Gorilla mux is the canonical router for larger Go web applications.
GoPgxConnGopgx PostgreSQL driver. Connection and Pool types expose Query/Exec/QueryRow that accept raw SQL strings — injection sinks when the SQL is built from user input. pgx is the recommended Postgres driver for new Go projects.
GoMongoCollectionGoMongoDB Go driver Collection and Client. Queries built from user input via bson.D or bson.M with string interpolation are NoSQL injection sinks. The filter argument on Find/Update/Delete operations is where tainted input lands.
GoRedisClientGogo-redis Client for Redis operations. Most Redis commands are typed and safe, but Eval() and EvalSha() accept Lua scripts that can be injection sinks when the script body is user-controlled. ACL commands can also be sinks.
GoYAMLDecoderGogopkg.in/yaml.v3 Decoder for YAML deserialization. Decode() hydrates arbitrary Go types from YAML input — a deserialization sink when the YAML source is user-controlled. Package-level yaml.Unmarshal has the same properties.
GoViperConfigGogithub.com/spf13/viper is the de-facto Go configuration library. Values returned from Get* methods are sources when the config file itself contains untrusted fields (environment, remote KV stores). Write methods that persist config back are typically neutral.
GoGRPCServerTransportStreamGogoogle.golang.org/grpc.ServerTransportStream exposes transport-layer metadata for in-flight gRPC calls. Method() returns the fully-qualified gRPC method name — path-like and frequently user-influenced via client-supplied routing. Header/Trailer methods ship metadata back to the client.
GoIOGoThe io standard library package. ReadAll and Copy move data from readers — sources when the underlying reader is user-controlled (e.g. an http.Request.Body). WriteString writes to a writer and is a sink when the writer is an HTTP response.
GoJSONGoencoding/json for JSON encode/decode. Unmarshal and Decoder.Decode deserialize JSON into Go values — the destination struct becomes tainted if the input bytes are user-controlled. Encoder.Encode writes JSON to a writer, a sink when the writer is an HTTP response.
GoArenaGoGo stdlib package — arena. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoBytesGoGo stdlib package — bytes. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCmpGoGo stdlib package — cmp. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCompressBzip2GoGo stdlib package — compress/bzip2. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCompressFlateGoGo stdlib package — compress/flate. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCompressGzipGoGo stdlib package — compress/gzip. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCompressLzwGoGo stdlib package — compress/lzw. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCompressZlibGoGo stdlib package — compress/zlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoContainerHeapGoGo stdlib package — container/heap. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoContainerListGoGo stdlib package — container/list. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoContainerRingGoGo stdlib package — container/ring. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoStdlibGoGo stdlib package — crypto. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoBoringGoGo stdlib package — crypto/boring. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoDesGoGo stdlib package — crypto/des. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoDsaGoGo stdlib package — crypto/dsa. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoEcdhGoGo stdlib package — crypto/ecdh. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoEcdsaGoGo stdlib package — crypto/ecdsa. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoEd25519GoGo stdlib package — crypto/ed25519. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoEllipticGoGo stdlib package — crypto/elliptic. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoMd5GoGo stdlib package — crypto/md5. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoRc4GoGo stdlib package — crypto/rc4. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoRsaGoGo stdlib package — crypto/rsa. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoSha1GoGo stdlib package — crypto/sha1. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoSubtleGoGo stdlib package — crypto/subtle. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoTlsFipsonlyGoGo stdlib package — crypto/tls/fipsonly. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCryptoX509PkixGoGo stdlib package — crypto/x509/pkix. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDatabaseSqlDriverGoGo stdlib package — database/sql/driver. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDebugBuildinfoGoGo stdlib package — debug/buildinfo. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDebugDwarfGoGo stdlib package — debug/dwarf. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDebugElfGoGo stdlib package — debug/elf. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDebugGosymGoGo stdlib package — debug/gosym. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDebugMachoGoGo stdlib package — debug/macho. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDebugPeGoGo stdlib package — debug/pe. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDebugPlan9objGoGo stdlib package — debug/plan9obj. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoEmbedGoGo stdlib package — embed. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoEncodingGoGo stdlib package — encoding. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoEncodingAscii85GoGo stdlib package — encoding/ascii85. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoEncodingAsn1GoGo stdlib package — encoding/asn1. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoEncodingBase32GoGo stdlib package — encoding/base32. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoEncodingPemGoGo stdlib package — encoding/pem. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoErrorsGoGo stdlib package — errors. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoExpvarGoGo stdlib package — expvar. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoFlagGoGo stdlib package — flag. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoAstGoGo stdlib package — go/ast. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoBuildGoGo stdlib package — go/build. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoBuildConstraintGoGo stdlib package — go/build/constraint. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoConstantGoGo stdlib package — go/constant. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDocGoGo stdlib package — go/doc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoDocCommentGoGo stdlib package — go/doc/comment. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoFormatGoGo stdlib package — go/format. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImporterGoGo stdlib package — go/importer. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoParserGoGo stdlib package — go/parser. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoPrinterGoGo stdlib package — go/printer. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoScannerGoGo stdlib package — go/scanner. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTokenGoGo stdlib package — go/token. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTypesGoGo stdlib package — go/types. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoHashGoGo stdlib package — hash. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoHashAdler32GoGo stdlib package — hash/adler32. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoHashCrc32GoGo stdlib package — hash/crc32. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoHashCrc64GoGo stdlib package — hash/crc64. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoHashFnvGoGo stdlib package — hash/fnv. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoHashMaphashGoGo stdlib package — hash/maphash. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoHtmlGoGo stdlib package — html. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImageGoGo stdlib package — image. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImageColorGoGo stdlib package — image/color. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImageColorPaletteGoGo stdlib package — image/color/palette. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImageDrawGoGo stdlib package — image/draw. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImageGifGoGo stdlib package — image/gif. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImageJpegGoGo stdlib package — image/jpeg. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoImagePngGoGo stdlib package — image/png. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoIndexSuffixarrayGoGo stdlib package — index/suffixarray. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoIoIoutilGoGo stdlib package — io/ioutil. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoLogSyslogGoGo stdlib package — log/syslog. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoMapsGoGo stdlib package — maps. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoMathGoGo stdlib package — math. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoMathBigGoGo stdlib package — math/big. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoMathBitsGoGo stdlib package — math/bits. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoMathCmplxGoGo stdlib package — math/cmplx. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoMimeGoGo stdlib package — mime. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoMimeQuotedprintableGoGo stdlib package — mime/quotedprintable. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetHttpCgiGoGo stdlib package — net/http/cgi. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetHttpCookiejarGoGo stdlib package — net/http/cookiejar. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetHttpFcgiGoGo stdlib package — net/http/fcgi. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetHttpHttptestGoGo stdlib package — net/http/httptest. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetHttpHttptraceGoGo stdlib package — net/http/httptrace. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetHttpHttputilGoGo stdlib package — net/http/httputil. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetHttpPprofGoGo stdlib package — net/http/pprof. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetMailGoGo stdlib package — net/mail. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetNetipGoGo stdlib package — net/netip. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetRpcGoGo stdlib package — net/rpc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetRpcJsonrpcGoGo stdlib package — net/rpc/jsonrpc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoNetTextprotoGoGo stdlib package — net/textproto. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoOsSignalGoGo stdlib package — os/signal. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoPathGoGo stdlib package — path. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRegexpSyntaxGoGo stdlib package — regexp/syntax. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeAsanGoGo stdlib package — runtime/asan. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeCgoGoGo stdlib package — runtime/cgo. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeCoverageGoGo stdlib package — runtime/coverage. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeDebugGoGo stdlib package — runtime/debug. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeMetricsGoGo stdlib package — runtime/metrics. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeMsanGoGo stdlib package — runtime/msan. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimePprofGoGo stdlib package — runtime/pprof. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeRaceGoGo stdlib package — runtime/race. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoRuntimeTraceGoGo stdlib package — runtime/trace. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoSlicesGoGo stdlib package — slices. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoSortGoGo stdlib package — sort. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoSyncAtomicGoGo stdlib package — sync/atomic. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoSyscallJsGoGo stdlib package — syscall/js. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTestingGoGo stdlib package — testing. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTestingFstestGoGo stdlib package — testing/fstest. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTestingIotestGoGo stdlib package — testing/iotest. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTestingQuickGoGo stdlib package — testing/quick. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTestingSlogtestGoGo stdlib package — testing/slogtest. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTextScannerGoGo stdlib package — text/scanner. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTextTabwriterGoGo stdlib package — text/tabwriter. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTextTemplateParseGoGo stdlib package — text/template/parse. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoTimeTzdataGoGo stdlib package — time/tzdata. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoUnicodeGoGo stdlib package — unicode. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoUnicodeUtf16GoGo stdlib package — unicode/utf16. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoUnicodeUtf8GoGo stdlib package — unicode/utf8. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoUnsafeGoGo stdlib package — unsafe. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCloudGoogleComGoGo third-party package — cloud.google.com/go. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoAwsAwsSdkGoGoGo third-party package — github.com/aws/aws-sdk-go-v2. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoCodeskyblueGoShGoGo third-party package — github.com/codeskyblue/go-sh. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoFloschPongo2GoGo third-party package — github.com/flosch/pongo2/v6. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoGoPlaygroundValidatorGoGo third-party package — github.com/go-playground/validator/v10. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoPelletierGoTomlGoGo third-party package — github.com/pelletier/go-toml/v2. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoSirupsenLogrusGoGo third-party package — github.com/sirupsen/logrus. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoSpf13AferoGoGo third-party package — github.com/spf13/afero. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoStretchrTestifyGoGo third-party package — github.com/stretchr/testify. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoGoUberOrgZapGoGo third-party package — go.uber.org/zap. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
GoK8sIoClientGoGoGo third-party package — k8s.io/client-go. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySubprocessPyThe subprocess standard library module for spawning child processes. Most call APIs accept either a list[str] (safe) or a string with shell=True (command-injection sink when the string contains user input).
PyOSPyThe os standard library module. os.system() and os.popen() always invoke a shell and are injection sinks. os.exec* variants avoid the shell but are still sinks for the program path. Environment accessors (os.environ, os.getenv) are sources.
PyPicklePyThe pickle module for Python object serialization. pickle.load() and pickle.loads() execute arbitrary code during deserialization via __reduce__ — always unsafe with untrusted input. Use json or signed payloads instead.
PyMarshalPyThe marshal module for Python internal object serialization. Like pickle, marshal.load() / marshal.loads() execute code paths determined by the input bytes — unsafe on untrusted data. The module is undocumented for general use.
PySqlite3PyThe sqlite3 module wraps the SQLite C library. cursor.execute() and executemany() accept raw SQL strings and are injection sinks when the SQL is built from user input. Use the ? placeholder form for safe parameter binding.
PyPsycopg2Pypsycopg2 is the canonical PostgreSQL driver for Python. Cursor.execute() and executemany() are SQL injection sinks when the query is built by string concatenation or f-strings. Use %s placeholders for safe binding.
PyPyMongoPyPyMongo is the official MongoDB driver for Python. Collection methods accept filter dicts; NoSQL injection occurs when filter dicts are built from user-supplied JSON that lets attackers inject $where, $regex, or operator keys.
PyRedisPyredis-py is the de-facto Redis client for Python. Most commands are typed and safe. The main sinks are eval() and evalsha() which run Lua scripts — injection-sensitive when the script body is user-controlled.
PyFlaskPyFlask is a popular Python web microframework. The flask.request global exposes all HTTP input (args, form, json, files, headers, cookies) as taint sources. Response helpers like render_template (SSTI if template is user-controlled) and redirect (open-redirect) are sinks.
PyDjangoPyDjango is a full-featured Python web framework. HttpRequest exposes request data; the ORM Manager.raw() and Cursor.execute() are SQL injection sinks when the SQL is built from user input. Template rendering via mark_safe bypasses auto-escaping (XSS sink).
PyFastAPIPyFastAPI is a modern Python web framework built on Starlette and Pydantic. Path / query / body parameters declared on endpoints are sources. Response helpers inherited from Starlette include HTMLResponse and RedirectResponse (XSS and open-redirect sinks).
PyJinja2PyJinja2 is the template engine behind Flask and many Python frameworks. Template(source).render() and Environment.from_string() evaluate template syntax — SSTI sink when the template source comes from user input. Autoescape only protects rendered output, not the template source itself.
PyRequestsPyrequests is the most popular HTTP client for Python. All top-level methods and Session methods accept a URL as the first argument — SSRF sink when the URL is user-controlled. verify=False disables TLS verification (separate rule).
PyUrllibPyurllib.request (stdlib) is the lowest-level HTTP client in Python. urlopen() accepts both a URL string and a Request object — SSRF sink when the URL is user-controlled. Unlike requests, urlopen defaults to no TLS verification on some platforms.
PyYamlPyPyYAML is the standard YAML library. yaml.load() with the default Loader (or UnsafeLoader / Loader) instantiates arbitrary Python classes — RCE sink on untrusted input. Use yaml.safe_load() or Loader=yaml.SafeLoader instead.
PyOSPathPyThe os.path module for path manipulation. join() concatenates path components but does not resolve traversal sequences — path-traversal bug when joining a trusted base with a user-controlled path. Use os.path.commonpath + realpath containment checks to sanitize.
PyTempfilePyThe tempfile module. mktemp() is deprecated and insecure (race condition between filename generation and open). Use NamedTemporaryFile, mkstemp, or TemporaryDirectory which atomically create the file.
PyTarfilePyThe tarfile module. extractall() and extract() follow archive entry paths as-is — path-traversal sink (zip slip) when the archive is user-supplied and extractall's filter= argument is not set to a safe filter. Python 3.12 changed the default to 'data'.
PyZipfilePyThe zipfile module. ZipFile.extractall() and extract() are zip-slip sinks when the archive is untrusted. Python's extractall resolves .. segments in archive members to paths outside the target directory.
PyHashlibPyThe hashlib module provides cryptographic hash functions. md5 and sha1 are cryptographically broken — findings for password hashing / signature use. For password hashing use hashlib.scrypt, pbkdf2_hmac, or the passlib / argon2-cffi packages.
PyHmacPyThe hmac module for keyed message authentication. compare_digest is the only constant-time comparison helper — using ordinary == for MAC comparison is a timing-attack sink.
PySecretsPyThe secrets module provides cryptographically strong random values suitable for managing authentication tokens. Use secrets instead of the random module for session IDs, tokens, and CSRF nonces.
PyRandomPyThe random module uses a Mersenne Twister PRNG — NOT suitable for cryptography. random.random, random.choice, random.randint, and SystemRandom(..) should be flagged for security contexts. Use the secrets module for tokens, passwords, and keys.
PySslPyThe ssl module for TLS / SSL. SSLContext with verify_mode=CERT_NONE disables certificate validation (MITM risk). _create_unverified_context() is an explicit bypass — finding for any production code. Use create_default_context() for sane defaults.
PyAstPyThe ast module exposes Python's abstract syntax tree. ast.literal_eval is a safe evaluator for literals only. The builtins eval() and exec() execute arbitrary Python code — RCE sinks on user input. compile() produces code objects that reach exec().
PyJsonPyThe json module for JSON encode / decode. Unlike pickle, json is safe by default — only parses primitives, lists, dicts. Still worth documenting because json.loads is a common source entry point and json.dumps on response values is where reflected XSS originates.
PyHttpClientPyThe http.client module provides low-level HTTP primitives. HTTPConnection / HTTPSConnection.request() is an SSRF sink when the host or path comes from user input. HTTPSConnection with context=None falls back to system default TLS settings.
PySocketPyThe socket module for low-level network operations. socket.connect() is an SSRF primitive when the host / port comes from user input. socket.bind() on 0.0.0.0 is a finding for services that should be localhost-only.
PyUrllibParsePyThe urllib.parse module for URL parsing and building. urljoin is commonly used to build request URLs — when the base is user-controlled, attackers can redirect to arbitrary hosts. urlparse can be used as a sanitizer for SSRF if the netloc is validated.
PyFtplibPyThe ftplib module for FTP (insecure plaintext protocol). FTP() connects unencrypted; FTP_TLS is the secure variant. Any use of the plain FTP class is a finding for sensitive data flows.
PyTelnetlibPyThe telnetlib module for Telnet (insecure plaintext protocol). Any use of Telnet is a finding; use paramiko / SSH instead. Deprecated since 3.11, removed in 3.13.
PySmtplibPyThe smtplib module for SMTP. SMTP() uses plaintext unless starttls() is called. SMTP_SSL is the always-encrypted variant. Rule writers also target email header / recipient construction for header-injection sinks.
PyPathlibPyThe pathlib module is the modern OO path API. Path.resolve() expands symlinks (sanitizer when combined with containment check). Path.open / read_text / write_text are file I/O sinks when the path is user-controlled.
PyShutilPyThe shutil module for high-level file operations. unpack_archive automatically extracts tar / zip / gztar / bztar / xztar archives — same zip-slip risks as tarfile.extractall. copytree can also be used for path-traversal.
PyShlexPyThe shlex module provides shell-compatible tokenization and quoting. shlex.quote is the canonical sanitizer for shell=True command construction. shlex.split is safer than splitting yourself, but quote is what protects against shell-metacharacter injection.
PyXmlEtreePyxml.etree.ElementTree is the stdlib XML parser. The C-accelerated parser has some built-in protections but still processes external entities in some configurations — XXE sink. Prefer defusedxml for untrusted XML.
PyXmlSaxPyxml.sax is the stdlib SAX parser. By default it resolves external entities — XXE sink on untrusted XML. Disable with parser.setFeature(feature_external_ges, False) or use defusedxml.sax.
PyXmlDomPyxml.dom.minidom for DOM-style XML parsing. Built on pyexpat which by default does not resolve external entities, but custom resolvers can reintroduce XXE. defusedxml.minidom is the hardened replacement.
PyXmlrpcPyxmlrpc.client and xmlrpc.server. ServerProxy RPCs execute arbitrary methods — dispatch on untrusted method names is a sink. ServerProxy + HTTP (not HTTPS) transmits credentials in plaintext.
PyZlibPyThe zlib module for compression. decompress() on untrusted input can consume unbounded memory (zip bomb / decompression amplification). Set max_length to cap output.
PyShelvePyThe shelve module persists arbitrary Python objects — backed by pickle under the hood. shelve.open() on untrusted files is a deserialization sink (RCE via pickle's __reduce__).
PyLoggingPyThe logging module. Most uses are neutral. Log-injection findings arise when user-controlled data is logged without sanitization — attackers can break log line boundaries with \n or forge subsequent log entries.
PySqlalchemyPySQLAlchemy is the most-used Python ORM. The text() wrapper and raw execute() are SQL injection sinks when the SQL is built from user input. Core and ORM query APIs with bound parameters are safe.
PyPymysqlPyPyMySQL is a pure-Python MySQL driver. Cursor.execute() accepts a raw query and parameter tuple — injection sink when the query is built from user input without the %s placeholder.
PyMysqlDbPyMySQLdb (mysqlclient) is a C-extension MySQL driver. Cursor.execute() is an SQL injection sink when the query is built without %s placeholders.
PyHttpxPyhttpx is a modern async-capable HTTP client. Identical SSRF surface to requests — the URL argument on get/post/etc is a sink when user-controlled. verify=False disables TLS verification (separate rule).
PyHttplib2Pyhttplib2 is an HTTP client with advanced caching features. Http.request() is an SSRF sink when the URI is user-controlled.
PyLxmlPylxml is the C-backed XML / HTML parser. etree.parse / fromstring with a custom XMLParser(resolve_entities=True) is an XXE sink. Default behavior in recent lxml is safer but the API still allows unsafe configurations.
PyDefusedXmlPydefusedxml is the hardened XML parser suite. It wraps xml.etree, xml.sax, xml.dom, lxml etc. with external-entity resolution disabled. Using defusedxml counterparts is the recommended sanitizer for XML sources.
PyJosePypython-jose implements JWT / JWS / JWE. jwt.decode() is the canonical validation entry point. Finding when algorithms=['none'] is passed (unsigned token acceptance) or verify_signature=False.
PyAuthlibPyAuthlib is a comprehensive OAuth / OpenID / JWT library. JsonWebToken.decode() and the OAuth client Client.parse_request_body_response track access-token flows.
PyParamikoPyparamiko is the SSH / SFTP client for Python. SSHClient.set_missing_host_key_policy with AutoAddPolicy() silently trusts unknown hosts — MITM risk. exec_command() is a command-execution sink when the command is user-controlled.
PyLdap3Pyldap3 is a pure-Python LDAP client. Connection.search() accepts a search_filter — LDAP injection sink when the filter is built from user input without escaping. Use ldap3.utils.conv.escape_filter_chars() for safe construction.
PyBleachPybleach is an HTML sanitizer library. bleach.clean() strips dangerous tags and attributes — sanitizer for XSS flows. bleach.linkify() is also safe.
PyWerkzeugPyWerkzeug is the WSGI toolkit Flask is built on. safe_join() is the canonical path-traversal sanitizer for serving files. utils.redirect is where Flask's open-redirect surface originates.
PyJsonschemaPyjsonschema validates JSON documents against a schema. validate() is a sanitizer for shape-checking untrusted JSON before passing fields to other sinks.
PyPydanticPyPydantic provides strict type-validated models. BaseModel parses / coerces input and raises on mismatch — the parsed model is a sanitizer for the raw input. Still, string fields on the model can remain tainted (not magically escaped).
PyBoto3Pyboto3 is the AWS SDK for Python. client('s3').get_object(...) and similar operations commonly ingest user input into bucket / key names — SSRF-like vectors through S3 URLs and IAM misconfiguration. Covering for rule writers that check AWS-specific patterns.
PyAiofilesPyaiofiles provides async file I/O. aiofiles.open() is a path-traversal sink when the path is user-controlled (same as built-in open).
PyHtmlPyThe html module. html.escape() is the canonical XSS sanitizer for writing user input into HTML text content. html.unescape() does the inverse and should NOT be used on output paths.
PyStringTemplatePystring.Template and string.Formatter. Template($var) substitution is safe when placeholders are explicit. Formatter.format() with user-controlled format_spec is a format-string injection vector.
PyRePyThe re module. Catastrophic backtracking in regex patterns (ReDoS) — finding when a user-controlled pattern flows into re.compile / re.search / re.match. Also, re.findall on untrusted HTML is a common anti-pattern that misses cases.
PyIpaddressPyThe ipaddress module for IP address parsing and classification. IPv4Address / IPv6Address constructors raise on invalid input — sanitizer for IP flows. is_private / is_loopback / is_reserved are building blocks for SSRF defense.
PyCsvPyThe csv module. csv.writer + writerow on user-controlled cells produces CSV-formula injection when the receiver opens the CSV in Excel (cells starting with =, +, -, @ are interpreted as formulas). No stdlib sanitizer — prefix with a tab or apostrophe.
PyEmailPyThe email package. email.message.EmailMessage assembly with user-controlled Subject, To, From, or body is an email-header-injection sink (CRLF in header values can inject extra headers). email.parser handles incoming messages — sources of user content.
PyConfigparserPyThe configparser module reads INI-style config files. Values read via get() are sources when the config file is user-supplied. The module itself has no injection sinks of its own.
PyHttpServerPyThe http.server module. SimpleHTTPRequestHandler serves files from the current working directory — path-traversal sink on directory containing secrets. Intended for development only, finding on any production use.
PyHttpCookiesPyThe http.cookies module for cookie parsing. SimpleCookie accepts raw Cookie headers — the parsed morsels carry user input. Setting a cookie without Secure / HttpOnly / SameSite is a common hardening finding.
PyImaplibPyThe imaplib module. IMAP4() uses plaintext; IMAP4_SSL is the encrypted variant. Any use of plain IMAP is a credential-over-plaintext finding.
PyPoplibPyThe poplib module. POP3() is plaintext; POP3_SSL encrypts. Plaintext POP3 is a credential-over-plaintext finding.
PyCgiPyThe cgi module (deprecated in 3.11, removed in 3.13). cgi.FieldStorage collects form data for CGI scripts — each field value is a source. Any new code should not use cgi.
PyWsgirefPyThe wsgiref module for WSGI utilities. simple_server.make_server is dev-only — production should use gunicorn or waitress. util.request_uri reconstructs the URL from environ and is a source.
PyGetpassPyThe getpass module. getpass.getpass() prompts for a password without echoing. getpass.getuser() returns the current user — source when used for authorization decisions.
PyGlobPyThe glob module. glob.glob() resolves shell-style patterns against the filesystem — finding when the pattern is user-controlled (can enumerate directories outside intended scope).
PyCtypesPyThe ctypes module for calling C libraries. LoadLibrary / CDLL on user-controlled paths loads arbitrary code — code-execution sink. String pointer operations can also be memory-safety findings.
PyCryptPyThe crypt module (deprecated in 3.11, removed in 3.13). crypt.crypt() wraps the Unix crypt(3) call. Most default methods are weak (DES, MD5). Use passlib or hashlib.scrypt / pbkdf2_hmac instead.
PyDbmPyThe dbm family (dbm.gnu, dbm.ndbm, dbm.dumb). dbm.open() on untrusted files reads a DBM-format database. dbm.dumb is pickle-like and unsafe on untrusted input.
PyAiohttpPyaiohttp provides async HTTP client and server. ClientSession.get / post and the top-level request() are SSRF sinks on user-controlled URLs. aiohttp.web request handlers expose sources via request.query, request.post, request.json.
PyStarlettePyStarlette is the ASGI toolkit behind FastAPI. Request exposes HTTP input; the responses module provides HTMLResponse / RedirectResponse / FileResponse (sinks for XSS, open-redirect, path-traversal respectively).
PyRestFrameworkPyDjango REST Framework (DRF). request.data is the primary source for JSON / form payloads; serializers validate input (sanitizer when is_valid is called with raise_exception=True). Response() with tainted data is generally safe due to DRF's renderers but render_template is still worth watching.
PyFlaskCorsPyflask-cors configures CORS headers on Flask apps. CORS(app, origins='*') with supports_credentials=True is a major finding (wildcard origin with credentials is explicitly forbidden by browsers but some configurations still emit it).
PyWerkzeugSecurityPywerkzeug.security provides generate_password_hash and check_password_hash. The default method is pbkdf2:sha256 with 600_000 iterations. Findings arise when method='plain' or a weak hasher is passed explicitly.
PyPyjwtPyPyJWT decodes and validates JWTs. jwt.decode() with algorithms=['none'] or options={'verify_signature': False} accepts unsigned tokens — major finding. Always pass algorithms explicitly.
PyOauthlibPyoauthlib implements the OAuth 1 / OAuth 2 protocols. WebApplicationClient.parse_request_uri_response extracts the authorization code from the callback URL — source for subsequent token exchange.
PyCryptographyPyThe cryptography package provides recipes (Fernet) and primitives (hazmat). Fernet is the recommended symmetric encryption helper. Findings arise when hazmat primitives are used with obsolete algorithms (MD5, DES, RC4) or ECB mode.
PyHvacPyhvac is the Python client for HashiCorp Vault. Client.secrets.kv.v2.read_secret_version reads a secret — the returned payload is a source. Client() with verify=False disables TLS verification (major finding).
PyPycurlPypycurl wraps libcurl. curl.setopt(pycurl.URL, ...) is an SSRF sink on user-controlled URLs. setopt(pycurl.SSL_VERIFYPEER, 0) disables TLS verification.
PyPysftpPypysftp wraps paramiko with a simpler SFTP interface. Connection(host, cnopts=...) with CnOpts.hostkeys=None disables host-key checking — MITM finding.
PyDockerPyThe docker SDK. DockerClient.containers.run with privileged=True is a container-escape finding. volumes mounting /var/run/docker.sock into the container grants full Docker daemon access.
PyCeleryPyCelery is a distributed task queue. Celery(broker=..., backend=...) configures brokers — findings when broker URL has insecure defaults (redis:// without TLS, amqp:// without TLS). @task decorators accept arbitrary user-controlled args via the queue.
PyWaitressPywaitress is a production WSGI server. serve() with host='0.0.0.0' exposes the app to all interfaces — finding for internal-only services.
PyGunicornPygunicorn is a production WSGI server. Commonly run via CLI but programmatic use via Application() is possible. bind '0.0.0.0:*' on internal apps is a finding.
PyPyasn1Pypyasn1 decodes ASN.1 structures. der_decoder.decode() on untrusted DER bytes can trigger denial-of-service via deep nesting. Typically used in certificate / LDAP contexts.
PyDockerfileParsePydockerfile_parse parses Dockerfiles. Returned structures reflect user-controlled file content. Usually a source for linting rules, not a sink.
PyTomlPytoml parses TOML configuration. toml.load() is a neutral data loader — values become sources when the config file is user-supplied. tomllib (stdlib, 3.11+) is the modern replacement.
PyXmltodictPyxmltodict parses XML into nested dicts (uses expat under the hood). Entity expansion is disabled by default, but the module's parse() still exposes untrusted XML to the app. Not a full XXE defense.
PyWtformsPyWTForms provides form validation for Flask / Django-style apps. Form().validate_on_submit() is a sanitizer for field-level validation. Still, string field values reach templates / SQL if fed directly without additional escaping.
PyDjangoFiltersPydjango-filter builds Django QuerySet filters from query params. FilterSet.qs runs the filtered query — injection is impossible via the FilterSet, but custom filter methods that build raw SQL are sinks.
PyPexpectPypexpect spawns interactive subprocesses with expect/respond patterns. spawn(cmd, ...) on user-controlled cmd is a command-injection sink, equivalent to subprocess with shell=True.
PyCffiPycffi calls C libraries without writing a C extension. FFI.dlopen() loads a shared library at runtime — code-execution sink on user-controlled path. FFI.cdef parses C declarations — neutral unless the definitions are user-controlled.
PyAbcPyPython stdlib module — abc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAifcPyPython stdlib module — aifc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAntigravityPyPython stdlib module — antigravity. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyArgparsePyPython stdlib module — argparse. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyArrayPyPython stdlib module — array. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAsynchatPyPython stdlib module — asynchat. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAsyncioPyPython stdlib module — asyncio. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAsyncorePyPython stdlib module — asyncore. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAtexitPyPython stdlib module — atexit. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAudioopPyPython stdlib module — audioop. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBase64PyPython stdlib module — base64. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBdbPyPython stdlib module — bdb. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBinasciiPyPython stdlib module — binascii. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBisectPyPython stdlib module — bisect. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBz2PyPython stdlib module — bz2. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCprofilePyPython stdlib module — cProfile. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCalendarPyPython stdlib module — calendar. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCgitbPyPython stdlib module — cgitb. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyChunkPyPython stdlib module — chunk. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCmathPyPython stdlib module — cmath. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCmdPyPython stdlib module — cmd. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCodePyPython stdlib module — code. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCodecsPyPython stdlib module — codecs. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCodeopPyPython stdlib module — codeop. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCollectionsPyPython stdlib module — collections. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyColorsysPyPython stdlib module — colorsys. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCompileallPyPython stdlib module — compileall. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyConcurrentPyPython stdlib module — concurrent. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyContextlibPyPython stdlib module — contextlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyContextvarsPyPython stdlib module — contextvars. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCopyPyPython stdlib module — copy. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCopyregPyPython stdlib module — copyreg. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCursesPyPython stdlib module — curses. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDataclassesPyPython stdlib module — dataclasses. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDatetimePyPython stdlib module — datetime. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDecimalPyPython stdlib module — decimal. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDifflibPyPython stdlib module — difflib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDisPyPython stdlib module — dis. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDistutilsPyThird-party Python package module — distutils. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDoctestPyPython stdlib module — doctest. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyEncodingsPyPython stdlib module — encodings. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyEnsurepipPyPython stdlib module — ensurepip. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyEnumPyPython stdlib module — enum. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyErrnoPyPython stdlib module — errno. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFaulthandlerPyPython stdlib module — faulthandler. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFcntlPyPython stdlib module — fcntl. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFilecmpPyPython stdlib module — filecmp. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFileinputPyPython stdlib module — fileinput. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFnmatchPyPython stdlib module — fnmatch. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFractionsPyPython stdlib module — fractions. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFunctoolsPyPython stdlib module — functools. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGcPyPython stdlib module — gc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGenericpathPyPython stdlib module — genericpath. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGetoptPyPython stdlib module — getopt. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGettextPyPython stdlib module — gettext. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGraphlibPyPython stdlib module — graphlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGrpPyPython stdlib module — grp. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGzipPyPython stdlib module — gzip. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyHeapqPyPython stdlib module — heapq. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyIdlelibPyPython stdlib module — idlelib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyImghdrPyPython stdlib module — imghdr. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyImpPyPython stdlib module — imp. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyImportlibPyPython stdlib module — importlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyInspectPyPython stdlib module — inspect. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyIoPyPython stdlib module — io. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyItertoolsPyPython stdlib module — itertools. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyKeywordPyPython stdlib module — keyword. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyLib2to3PyPython stdlib module — lib2to3. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyLinecachePyPython stdlib module — linecache. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyLocalePyPython stdlib module — locale. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyLzmaPyPython stdlib module — lzma. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMailboxPyPython stdlib module — mailbox. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMailcapPyPython stdlib module — mailcap. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMathPyPython stdlib module — math. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMimetypesPyPython stdlib module — mimetypes. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMmapPyPython stdlib module — mmap. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyModulefinderPyPython stdlib module — modulefinder. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMultiprocessingPyPython stdlib module — multiprocessing. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNetrcPyPython stdlib module — netrc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNntplibPyPython stdlib module — nntplib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNtpathPyPython stdlib module — ntpath. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNturl2pathPyPython stdlib module — nturl2path. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNumbersPyPython stdlib module — numbers. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyOpcodePyPython stdlib module — opcode. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyOperatorPyPython stdlib module — operator. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyOptparsePyPython stdlib module — optparse. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyOssaudiodevPyPython stdlib module — ossaudiodev. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPdbPyPython stdlib module — pdb. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPickletoolsPyPython stdlib module — pickletools. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPipesPyPython stdlib module — pipes. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPkgutilPyPython stdlib module — pkgutil. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPlatformPyPython stdlib module — platform. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPlistlibPyPython stdlib module — plistlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPosixPyPython stdlib module — posix. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPosixpathPyPython stdlib module — posixpath. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPprintPyPython stdlib module — pprint. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyProfilePyPython stdlib module — profile. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPstatsPyPython stdlib module — pstats. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPtyPyPython stdlib module — pty. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPwdPyPython stdlib module — pwd. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyCompilePyPython stdlib module — py_compile. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyclbrPyPython stdlib module — pyclbr. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPydocPyPython stdlib module — pydoc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPydocDataPyPython stdlib module — pydoc_data. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyexpatPyPython stdlib module — pyexpat. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyQueuePyPython stdlib module — queue. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyQuopriPyPython stdlib module — quopri. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyReadlinePyPython stdlib module — readline. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyReprlibPyPython stdlib module — reprlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyResourcePyPython stdlib module — resource. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRlcompleterPyPython stdlib module — rlcompleter. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRunpyPyPython stdlib module — runpy. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySchedPyPython stdlib module — sched. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySelectPyPython stdlib module — select. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySelectorsPyPython stdlib module — selectors. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySignalPyPython stdlib module — signal. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySitePyPython stdlib module — site. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySmtpdPyPython stdlib module — smtpd. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySndhdrPyPython stdlib module — sndhdr. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySocketserverPyPython stdlib module — socketserver. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySpwdPyPython stdlib module — spwd. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySreCompilePyPython stdlib module — sre_compile. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySreConstantsPyPython stdlib module — sre_constants. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySreParsePyPython stdlib module — sre_parse. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyStatPyPython stdlib module — stat. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyStatisticsPyPython stdlib module — statistics. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyStringprepPyPython stdlib module — stringprep. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyStructPyPython stdlib module — struct. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySunauPyPython stdlib module — sunau. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySymtablePyPython stdlib module — symtable. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySysPyPython stdlib module — sys. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySysconfigPyPython stdlib module — sysconfig. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySyslogPyPython stdlib module — syslog. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTabnannyPyPython stdlib module — tabnanny. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTermiosPyPython stdlib module — termios. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTextwrapPyPython stdlib module — textwrap. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyThisPyPython stdlib module — this. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyThreadingPyPython stdlib module — threading. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTimePyPython stdlib module — time. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTimeitPyPython stdlib module — timeit. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTkinterPyPython stdlib module — tkinter. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTokenPyPython stdlib module — token. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTokenizePyPython stdlib module — tokenize. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTracePyPython stdlib module — trace. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTracebackPyPython stdlib module — traceback. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTracemallocPyPython stdlib module — tracemalloc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTtyPyPython stdlib module — tty. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTurtlePyPython stdlib module — turtle. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTurtledemoPyPython stdlib module — turtledemo. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTypesPyPython stdlib module — types. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTypingPyPython stdlib module — typing. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUnicodedataPyPython stdlib module — unicodedata. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUnittestPyPython stdlib module — unittest. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUuPyPython stdlib module — uu. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUuidPyPython stdlib module — uuid. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyVenvPyPython stdlib module — venv. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWarningsPyPython stdlib module — warnings. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWavePyPython stdlib module — wave. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWeakrefPyPython stdlib module — weakref. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWebbrowserPyPython stdlib module — webbrowser. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyXdrlibPyPython stdlib module — xdrlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyZipappPyPython stdlib module — zipapp. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyZipimportPyPython stdlib module — zipimport. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyZoneinfoPyPython stdlib module — zoneinfo. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyJetsonPyThird-party Python package module — Jetson. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRpiPyThird-party Python package module — RPi. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyXlibPyThird-party Python package module — Xlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAntlr4PyThird-party Python package module — antlr4. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAssertpyPyThird-party Python package module — assertpy. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAtherisPyThird-party Python package module — atheris. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAuth0PyThird-party Python package module — auth0. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyAwsXraySdkPyThird-party Python package module — aws_xray_sdk. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBehavePyThird-party Python package module — behave. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBinaryornotPyThird-party Python package module — binaryornot. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBoltonsPyThird-party Python package module — boltons. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyBraintreePyThird-party Python package module — braintree. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCachetoolsPyThird-party Python package module — cachetools. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCapturerPyThird-party Python package module — capturer. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyChannelsPyThird-party Python package module — channels. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyChevronPyThird-party Python package module — chevron. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyClickPyThird-party Python package module — click. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyClickDefaultGroupPyThird-party Python package module — click_default_group. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyClickLogPyThird-party Python package module — click_log. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyClickShellPyThird-party Python package module — click_shell. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyClickSpinnerPyThird-party Python package module — click_spinner. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyClickWebPyThird-party Python package module — click_web. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyColoramaPyThird-party Python package module — colorama. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyColorfulPyThird-party Python package module — colorful. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyConsolemenuPyThird-party Python package module — consolemenu. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyConvertdatePyThird-party Python package module — convertdate. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyCroniterPyThird-party Python package module — croniter. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDatauriPyThird-party Python package module — datauri. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDateparserDataPyThird-party Python package module — dateparser_data. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDateutilPyThird-party Python package module — dateutil. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDecoratorPyThird-party Python package module — decorator. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDeprecatedPyThird-party Python package module — deprecated. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDirhashPyThird-party Python package module — dirhash. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyDocutilsPyThird-party Python package module — docutils. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyEditdistancePyThird-party Python package module — editdistance. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyEntrypointsPyThird-party Python package module — entrypoints. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyEphemPyThird-party Python package module — ephem. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyEtXmlfilePyThird-party Python package module — et_xmlfile. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFanstaticPyThird-party Python package module — fanstatic. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFirstPyThird-party Python package module — first. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlake8PyThird-party Python package module — flake8. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlake8BugbearPyThird-party Python package module — flake8_bugbear. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlake8BuiltinsPyThird-party Python package module — flake8_builtins. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlake8DocstringsPyThird-party Python package module — flake8_docstrings. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlake8RstDocstringsPyThird-party Python package module — flake8_rst_docstrings. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlake8SimplifyPyThird-party Python package module — flake8_simplify. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlake8TypingImportsPyThird-party Python package module — flake8_typing_imports. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlaskMigratePyThird-party Python package module — flask_migrate. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFlaskSocketioPyThird-party Python package module — flask_socketio. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyFpdfPyThird-party Python package module — fpdf. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGdbPyThird-party Python package module — gdb. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGeopandasPyThird-party Python package module — geopandas. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGeventPyThird-party Python package module — gevent. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGreenletPyThird-party Python package module — greenlet. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGrpcPyThird-party Python package module — grpc. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGrpcChannelzPyThird-party Python package module — grpc_channelz. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGrpcHealthPyThird-party Python package module — grpc_health. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGrpcReflectionPyThird-party Python package module — grpc_reflection. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyGrpcStatusPyThird-party Python package module — grpc_status. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyHdbcliPyThird-party Python package module — hdbcli. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyHnswlibPyThird-party Python package module — hnswlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyHtml5libPyThird-party Python package module — html5lib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyIbmDbPyThird-party Python package module — ibm_db. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyIcalendarPyThird-party Python package module — icalendar. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyImportExportPyThird-party Python package module — import_export. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyInifilePyThird-party Python package module — inifile. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyJackPyThird-party Python package module — jack. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyJenkinsPyThird-party Python package module — jenkins. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyJksPyThird-party Python package module — jks. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyJmespathPyThird-party Python package module — jmespath. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyJsonnetPyThird-party Python package module — jsonnet. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyJwcryptoPyThird-party Python package module — jwcrypto. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyKeyboardPyThird-party Python package module — keyboard. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyLunardatePyThird-party Python package module — lunardate. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyLupaPyThird-party Python package module — lupa. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyLzstringPyThird-party Python package module — lzstring. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyM3u8PyThird-party Python package module — m3u8. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMarkdownPyThird-party Python package module — markdown. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMockPyThird-party Python package module — mock. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyMypyExtensionsPyThird-party Python package module — mypy_extensions. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNanoidPyThird-party Python package module — nanoid. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNanoleafapiPyThird-party Python package module — nanoleafapi. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNetaddrPyThird-party Python package module — netaddr. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNetifacesPyThird-party Python package module — netifaces. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNetworkxPyThird-party Python package module — networkx. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyNmapPyThird-party Python package module — nmap. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyObjgraphPyThird-party Python package module — objgraph. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyOlefilePyThird-party Python package module — olefile. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyOpenpyxlPyThird-party Python package module — openpyxl. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyOpentracingPyThird-party Python package module — opentracing. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyParsimoniousPyThird-party Python package module — parsimonious. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPasspyPyThird-party Python package module — passpy. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPep8NamingPyThird-party Python package module — pep8_naming. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPikaPyThird-party Python package module — pika. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPlayhousePyThird-party Python package module — playhouse. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPolibPyThird-party Python package module — polib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPonyPyThird-party Python package module — pony. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPortpickerPyThird-party Python package module — portpicker. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPsutilPyThird-party Python package module — psutil. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPunqPyThird-party Python package module — punq. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyaudioPyThird-party Python package module — pyaudio. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyautoguiPyThird-party Python package module — pyautogui. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPycocotoolsPyThird-party Python package module — pycocotools. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyfarmhashPyThird-party Python package module — pyfarmhash. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyflakesPyThird-party Python package module — pyflakes. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPygmentsPyThird-party Python package module — pygments. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyiSplashPyThird-party Python package module — pyi_splash. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyluachPyThird-party Python package module — pyluach. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPymeeusPyThird-party Python package module — pymeeus. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPynputPyThird-party Python package module — pynput. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyperclipPyThird-party Python package module — pyperclip. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPyscreezePyThird-party Python package module — pyscreeze. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPysocksPyThird-party Python package module — pysocks. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPytestLazyFixturePyThird-party Python package module — pytest_lazy_fixture. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPythonCrontabPyThird-party Python package module — python_crontab. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPythonHttpClientPyThird-party Python package module — python_http_client. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPythonwinPyThird-party Python package module — pythonwin. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyPytzPyThird-party Python package module — pytz. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyQrbillPyThird-party Python package module — qrbill. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyQrcodePyThird-party Python package module — qrcode. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRatelimitPyThird-party Python package module — ratelimit. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRegexPyThird-party Python package module — regex. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyReportlabPyThird-party Python package module — reportlab. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRequestsOauthlibPyThird-party Python package module — requests_oauthlib. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyResampyPyThird-party Python package module — resampy. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRetryPyThird-party Python package module — retry. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyRfc3339ValidatorPyThird-party Python package module — rfc3339_validator. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyS2clientprotocolPyThird-party Python package module — s2clientprotocol. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySeabornPyThird-party Python package module — seaborn. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySend2trashPyThird-party Python package module — send2trash. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySerialPyThird-party Python package module — serial. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyShapelyPyThird-party Python package module — shapely. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySimpleWebsocketPyThird-party Python package module — simple_websocket. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySimplejsonPyThird-party Python package module — simplejson. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySingledispatchPyThird-party Python package module — singledispatch. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySixPyThird-party Python package module — six. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PySlumberPyThird-party Python package module — slumber. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyStr2boolPyThird-party Python package module — str2bool. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTabulatePyThird-party Python package module — tabulate. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTensorflowPyThird-party Python package module — tensorflow. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTgcryptoPyThird-party Python package module — tgcrypto. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyToposortPyThird-party Python package module — toposort. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTqdmPyThird-party Python package module — tqdm. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTranslationstringPyThird-party Python package module — translationstring. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTtkthemesPyThird-party Python package module — ttkthemes. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyTzdataPyThird-party Python package module — tzdata. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUnidiffPyThird-party Python package module — unidiff. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUntanglePyThird-party Python package module — untangle. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUsersettingsPyThird-party Python package module — usersettings. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyUwsgiPyThird-party Python package module — uwsgi. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyVobjectPyThird-party Python package module — vobject. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWatchpointsPyThird-party Python package module — watchpoints. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWebencodingsPyThird-party Python package module — webencodings. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWebobPyThird-party Python package module — webob. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWhatthepatchPyThird-party Python package module — whatthepatch. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWorkalendarPyThird-party Python package module — workalendar. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWurlitzerPyThird-party Python package module — wurlitzer. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyWwwAuthenticatePyThird-party Python package module — www_authenticate. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyXdgPyThird-party Python package module — xdg. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyXdgenvpyPyThird-party Python package module — xdgenvpy. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyXlrdPyThird-party Python package module — xlrd. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyXmldiffPyThird-party Python package module — xmldiff. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyYtDlpPyThird-party Python package module — yt_dlp. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyZstdPyThird-party Python package module — zstd. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
PyZxcvbnPyThird-party Python package module — zxcvbn. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
Add a new QueryType class by inheriting from QueryType and setting fqns.