plagiarism-detection

Similar code detector

二次信任 提交于 2019-12-31 10:36:37
问题 I'm search for a tool that could compare source codes for similarity. We have a very trivial system right now that has huge amount of false positives and the real positives can easily get buried in them. My requirements are: reasonably small amount of false positives good detection rate (yeah these are going against each other) ideally with a more complex output than just a single value usable for C (C99) and C++ (C++03 and optimally C++11) still maintained usable for comparing two source

Designing a noise filter for Plagiarism Detection Engine in Ruby

帅比萌擦擦* 提交于 2019-12-22 10:16:59
问题 I have been working on an Implementation of a Plagiarism Detection Engine based on the academic paper behind MOSS(Measure of Software Similarity) Link to MOSS For designing a noise filter for a language like C/C++/Java, I have some decisions to make. Are keywords relevant for detecting plagiarism or they should be removed? Source files in same language are bound to share the same set of keywords. The paper does not discuss on how to deal with them. How to deal with identifiers? Replacing all

Checking for code plagiarism with JavaScript

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-10 02:39:46
问题 I was wondering how I can detect code plagiarism with Javascript. I want to test assignment submissions for homework I'm going to hand out. I've looked at using MOSS, but—from what I've heard—it's pretty poor for anything other than C. Unfortunately, I can't test it yet because I don't have submissions. How can I go about detecting code plagiarism with JavaScript? 回答1: They claim that MOSS works on Javascript. Why don't you just try it. Write a Javascript file, then modify it, like a cheater

is there any working/real open source Plagiarism checker available? [closed]

你离开我真会死。 提交于 2019-12-06 01:44:40
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I want to develop a plagiarism checker for checking several source codes but I couldn't find any proper source code or even a resource to get an idea about it. I have checked the Boss2 which is useless. they claim that they use Sherlock module for detecting plagiarism but it seems there is no such tools included

Parser generation

旧巷老猫 提交于 2019-12-04 07:07:32
问题 i am doing a project on SOFWARE PLAGIARISM DETECTION ..i am intended to do it with language C..for that i am supposed to create a token generator, and a parser..but i dont know where to start..any one can help me out with this.. i created a database of tokens and i separated the tokens from my program.Next thing i wanna do is to compare two programs to find out whether it's plagiarized or not. For that i need to create a syntax analyzer.I don't know where to start from... i.e I want to create

is there any working/real open source Plagiarism checker available? [closed]

偶尔善良 提交于 2019-12-04 06:28:20
I want to develop a plagiarism checker for checking several source codes but I couldn't find any proper source code or even a resource to get an idea about it. I have checked the Boss2 which is useless. they claim that they use Sherlock module for detecting plagiarism but it seems there is no such tools included in boss2. if any open source detection tool is available for checking source code please let me know. regards I'm aware of open-source plagiarism detectors for text (e.g., WCopyFind ), but not code. I couldn't find... even a resource to get an idea about it. The authors of the

How to create a plagiarism detector of c++ files [closed]

删除回忆录丶 提交于 2019-12-04 02:56:18
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . hi a am a student and a have a project "plagiarism detector in c++ and java files" and i am in trouble i want(i hope to want) to see an example exist , a project in that title or a documentation in this field (in

Variable renaming for plagiarism detection for C/C++

不羁岁月 提交于 2019-12-03 10:01:09
问题 I have a couple of simple C++ homeworks and I know the students shared code. These are smart students and they know how to cheat moss. I'm looking for a tool that can rename variables based on their types (first variable of type int will be int1, first int array will be intptr1...), or does something similar that I cannot think of now. Do you know a quick way to do this? edit: I'm required to use moss and report 90% match Thanks 回答1: Yep, the tool you're looking for is called a compiler. :)

Variable renaming for plagiarism detection for C/C++

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-03 00:33:36
I have a couple of simple C++ homeworks and I know the students shared code. These are smart students and they know how to cheat moss. I'm looking for a tool that can rename variables based on their types (first variable of type int will be int1, first int array will be intptr1...), or does something similar that I cannot think of now. Do you know a quick way to do this? edit: I'm required to use moss and report 90% match Thanks Yep, the tool you're looking for is called a compiler. :) Seriously, if the programs submitted are exactly the same except for the identifier names, compiling then (

Similar code detector

泪湿孤枕 提交于 2019-12-02 20:44:44
I'm search for a tool that could compare source codes for similarity. We have a very trivial system right now that has huge amount of false positives and the real positives can easily get buried in them. My requirements are: reasonably small amount of false positives good detection rate (yeah these are going against each other) ideally with a more complex output than just a single value usable for C (C99) and C++ (C++03 and optimally C++11) still maintained usable for comparing two source files against each other usable in non-interactive mode EDIT: To avoid confusion, the following two code