소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 23일 22:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill eresus-codeql-heuristics명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | eresus-codeql-heuristics |
| description | > Use when this capability is needed. |
Provide a language-specific reference of dangerous sinks, sources, and patterns that security auditors should prioritize during manual code review. These heuristics are derived from the CodeQL Community Packs — the same query suites used by GitHub Advanced Security to find real vulnerabilities at scale.
Use this skill as a checklist companion during manual audit. It tells you what to look for
in each language. The actual manual reasoning is done by eresus-manual-security-audit.
Runtime.exec(), ProcessBuilder.command()Runtime.getRuntime().exec(userInput)InitialContext.lookup(userInput)Context.lookup() with attacker-controlled LDAP/RMI URLsSpELExpressionParser.parseExpression(userInput)OGNL.getValue(userInput)MVEL.eval(userInput)Statement.execute(query) with string concatenationStatement.executeQuery("SELECT ... " + userInput)createNativeQuery() with interpolated strings${} (raw) vs #{} (parameterized)ObjectInputStream.readObject()XStream.fromXML()Kryo.readObject()@JsonTypeInfo with MINIMAL_CLASS / CLASSDocumentBuilderFactory without setFeature(XMLConstants.FEATURE_SECURE_PROCESSING)SAXParserFactory without disabling external entitiesXMLInputFactory without disabling DTDsClass.forName(userInput).newInstance()Method.invoke() with user-controlled method namesnew File(basePath + userInput) without canonicalizationPaths.get(userInput) without restricting to base directoryos.system(userInput)subprocess.Popen(userInput, shell=True)subprocess.call(userInput, shell=True)os.popen(userInput)eval(userInput)exec(userInput)compile(userInput, ...)pickle.loads(userInput)pickle.load(untrustedFile)yaml.load(userInput) — safe: yaml.safe_load()shelve.open(userInput)marshal.loads(userInput)jinja2.Template(userInput).render()jinja2.Environment(autoescape=False)mako.template.Template(userInput)cursor.execute("SELECT ... " + userInput)extra(), raw(), RawSQL() with user inputtext(userInput)open(basePath + userInput)send_file(userInput)FileResponse(userInput)os.path.join(base, userInput) without os.path.realpath() checkrequests.get(userInput)urllib.request.urlopen(userInput)eval(userInput)Function(userInput)()setTimeout(userInput, ms) (string form)setInterval(userInput, ms) (string form)vm.runInNewContext(userInput)vm.runInThisContext(userInput)child_process.exec(userInput)child_process.execSync(userInput)child_process.exec(`cmd ${userInput}`)element.innerHTML = userInputelement.outerHTML = userInputdocument.write(userInput)insertAdjacentHTML('beforeend', userInput)dangerouslySetInnerHTML={{ __html: userInput }}v-html="userInput"bypassSecurityTrustHtml(userInput)lodash.merge({}, userInput)lodash.set(obj, userInput.key, userInput.value)Object.assign(target, JSON.parse(userInput))__proto__, constructor.prototype keys$where: userInputcollection.find({ field: userInput }) when userInput is { $gt: "" }collection.find(JSON.parse(userInput))path.join(base, userInput) without path.resolve() + prefix checkfs.readFile(userInput)res.sendFile(userInput)window.addEventListener('message', handler) without event.origin checkfetch(userInput), axios.get(userInput), got(userInput)fetch(\/api/${userInput}`)`exec.Command(userInput)exec.CommandContext(ctx, userInput)os.StartProcess(userInput, ...)db.Query("SELECT ... " + userInput)db.Exec("INSERT INTO ... " + userInput)fmt.Sprintf("SELECT ... %s", userInput) passed to db.Query()text/template (NO auto-escaping) vs html/template (auto-escapes)template.HTML(userInput) explicitly marking user input as safefilepath.Join(base, userInput) — does NOT prevent ../os.Open(userInput) without validationfilepath.Rel() or prefix check after filepath.Clean()InsecureSkipVerify: trueMinVersion: tls.VersionTLS10http.Get(userInput)http.NewRequest("GET", userInput, nil)system(userInput)`#{userInput}` (backticks)IO.popen(userInput)Open3.capture3(userInput)Kernel.exec(userInput)Marshal.load(userInput) — RCE via universal gadget chainYAML.load(userInput) — RCE via Psych → safe: YAML.safe_load()Oj.load(userInput, mode: :object) — safe: mode: :strictOx.load(userInput, mode: :object) — safe: mode: :genericActiveRecord: .where("column = '#{userInput}'")ActiveRecord: .order(userInput)ActiveRecord: .pluck(userInput)ActiveRecord: .select(userInput)object.send(userInput) — calls any methodobject.public_send(userInput) — calls any public methodERB.new(userInput).result(binding)Slim::Template.new { userInput }File.read(params[:file])send_file(params[:path])BinaryFormatter.Deserialize(stream) — banned in .NET 9+SoapFormatter.Deserialize(stream)NetDataContractSerializer.ReadObject(reader)ObjectStateFormatter.Deserialize(input)LosFormatter.Deserialize(input)XmlSerializer with polymorphic [XmlInclude] typesProcess.Start(userInput)Process.Start("cmd.exe", "/c " + userInput)new SqlCommand("SELECT ... " + userInput)cmd.CommandText = "SELECT ... " + userInputFromSqlRaw("SELECT ... " + userInput)HtmlString(userInput) — bypasses Razor encodingHtml.Raw(userInput)Type.GetType(userInput)Activator.CreateInstance(Type.GetType(userInput))Path.Combine(basePath, userInput) without canonicalizationFile.ReadAllText(userInput)strcpy(dst, src) — safe: strncpy(), strlcpy()strcat(dst, src) — safe: strncat()sprintf(buf, fmt, ...) — safe: snprintf()gets(buf) — never safe, removed in C11printf(userInput) — safe: printf("%s", userInput)fprintf(fp, userInput)syslog(priority, userInput)malloc(count * size) without overflow checksize_t arithmetic wrapping to zerofree()free() twice on same pointermalloc()system(userInput)popen(userInput, "r")execvp(userInput, args)When performing depth-first manual review, prioritize:
Use ONLY these tools for code inspection:
view_file — read source codegrep_search — find pattern matchesDo NOT use terminal commands like grep, rg, cat, sed, or any shell-based tools.
Source: EresusSecurity/appsec-skills — distributed by TomeVault.