Detect plagiarized and similar code across trillions of code sources on the web See what's new

Code Intelligence Hub

Expert insights on AI code detection and academic integrity

AI-Generated Code Detection: The New Frontier in Academic Integrity
Featured

AI-Generated Code Detection: The New Frontier in Academic Integrity

As AI coding assistants become ubiquitous, learn how institutions are adapting to detect AI-generated code and maintain educational standards.

Codequiry Editorial Team Codequiry Editorial Team · Jan 5, 2026
Read More →

Latest Articles

Stay ahead with expert analysis and practical guides

At What Renaming Threshold Do Token-Based Detectors Fail? General 10 min
David Kim David Kim · 15 hours ago

At What Renaming Threshold Do Token-Based Detectors Fail?

Most CS instructors trust MOSS to catch code copying — but how much renaming actually breaks it? This step-by-step guide shows you how to run a controlled experiment, measure the exact threshold where token-based similarity collapses, and see why a multi-stage engine that combines tokens with AST fingerprinting catches what MOSS misses.

Side-by-Side AI and Plagiarism Detection in CS2 General 10 min
Priya Sharma Priya Sharma · 1 day ago

Side-by-Side AI and Plagiarism Detection in CS2

We ran both MOSS and an AI-generated code detector on all submissions across a semester of Data Structures. What we learned about catching ChatGPT-authored code — and where MOSS still shines — changed how our department thinks about academic integrity tooling.

Automating Code Plagiarism and AI Checks in GitHub Classroom General 11 min
Priya Sharma Priya Sharma · 2 days ago

Automating Code Plagiarism and AI Checks in GitHub Classroom

GitHub Classroom automates assignment distribution, but grading still exposes copied code and AI-authored submissions late in the semester. By wiring Codequiry’s dual-purpose API into a GitHub Actions pipeline, instructors can flag both traditional plagiarism and LLM-generated solutions the moment a student pushes. This walkthrough shows the exact YAML and shell scripts you need, plus how to interpret the structured similarity and AI probability reports that come back.

Across Two Semesters, AI Code Detector Accuracy Hit 87% in Python General 7 min
Rachel Foster Rachel Foster · 3 days ago

Across Two Semesters, AI Code Detector Accuracy Hit 87% in Python

A two-semester experiment at a mid-sized CS department put Codequiry’s AI code detector to the test across 1,200 student submissions. The tool achieved 87% overall accuracy in identifying AI-generated Python code, with a manageable false-positive rate and strong recall. The study surfaced distinct patterns in where detection excels—and where manual judgment remains essential.

How Winnowing Fingerprints Resist Variable Renaming General 12 min
Alex Petrov Alex Petrov · 4 days ago

How Winnowing Fingerprints Resist Variable Renaming

Winnowing fingerprinting is the back‑bone of tools like MOSS that spot copied code even after students rename every variable and shuffle blocks. This deep‑dive unpacks the algorithm, its thresholds, and why a multimodal approach—token, AST, and web‑source checking—covers the gaps that fingerprinting alone leaves open.

Scanning a Codebase for GPL Violations Before Acquisition General 11 min
Emily Watson Emily Watson · 5 days ago

Scanning a Codebase for GPL Violations Before Acquisition

When ZephyrCloud faced a pre-acquisition license audit, its engineering team turned to automated code similarity scanning after manual searches proved unreliable. The process uncovered several GPL-licensed snippets copied from Stack Overflow and GitHub, forcing a careful remediation effort that saved the deal. Here’s what they learned about using plagiarism detection for open-source compliance.

Bootcamps Are Automatically Scanning Every Submission for AI Code General 6 min
James Okafor James Okafor · 6 days ago

Bootcamps Are Automatically Scanning Every Submission for AI Code

Coding bootcamps that graduate thousands of developers a year are shifting from manual spot-checks to automated AI code detection on every single submission. Here’s a hands‑on guide to building that pipeline with Codequiry’s API — from single‑file scanning to a full CI‑grade batch checker you can run in a GitHub Action.

How Code Similarity Detection Grew From Diff to AI General 8 min
James Okafor James Okafor · 1 week ago

How Code Similarity Detection Grew From Diff to AI

From the early days of the Unix diff command to the rise of MOSS, JPlag, and AI-powered detectors, code similarity detection has undergone a quiet revolution. This retrospective traces the key technical milestones—tokenization, ASTs, fingerprinting, web-source matching, and the new frontier of AI-generated code—showing how each layer made plagiarism harder to hide. See how modern platforms like Codequiry unify these techniques into a single pipeline.

How an Engineering Team Automated Code Originality Checks for Contractors General 11 min
James Okafor James Okafor · 1 week ago

How an Engineering Team Automated Code Originality Checks for Contractors

When a mid-sized software firm started scaling external contractor contributions, they needed a way to verify code originality at scale. By integrating Codequiry’s API into their CI/CD pipeline, they built an automated gate that flagged plagiarized open-source snippets and AI-generated code before it ever hit the main branch. Here’s a look at their process, the false-positive tradeoffs, and the integration that saved their legal review hours.

Automating Source Code Plagiarism Checks With Canvas and Codequiry General 12 min
Marcus Rodriguez Marcus Rodriguez · 1 week ago

Automating Source Code Plagiarism Checks With Canvas and Codequiry

When a single CS1 assignment yields 300+ submissions, manual plagiarism checking simply doesn't scale. This hands-on guide walks through connecting Canvas to Codequiry's API, running similarity and AI-detection scans with a handful of Python scripts, and posting flagged results directly back into the SpeedGrader — so you catch the cases that matter without drowning in paperwork.

Designing Plagiarism-Resistant Programming Assignments General 11 min
Dr. Sarah Chen Dr. Sarah Chen · 1 week ago

Designing Plagiarism-Resistant Programming Assignments

Copy-paste code and AI-generated solutions are flooding CS courses. Smart assignment design—parameterized prompts, incremental checkpoints, and open-ended specs—can make copying so cumbersome that students default to doing their own work. This deep dive builds a concrete, reusable playbook for instructors.