コード例 #1
0
def PushtoRecent(NAME, MD5, URL):
    try:
        DB = RecentScansDB.objects.filter(MD5=MD5)
        if not DB.exists():
            NDB = RecentScansDB(NAME=NAME, MD5=MD5, URL=URL, TS=timezone.now())
            NDB.save()
    except:
        PrintException("[ERROR] Adding Scan URL to Database")
コード例 #2
0
def PushtoRecent(NAME,MD5,URL):
    try:
        DB=RecentScansDB.objects.filter(MD5=MD5)
        if not DB.exists():
            NDB=RecentScansDB(NAME=NAME,MD5=MD5,URL=URL,TS=timezone.now())
            NDB.save()
    except:
        PrintException("[ERROR] Adding Scan URL to Database")
コード例 #3
0
def add_to_recent_scan(name, md5, url):
    """
    Add Entry to Database under Recent Scan
    """
    try:
        db_obj = RecentScansDB.objects.filter(MD5=md5)
        if not db_obj.exists():
            new_db_obj = RecentScansDB(
                NAME=name, MD5=md5, URL=url, TS=timezone.now())
            new_db_obj.save()
    except:
        PrintException("[ERROR] Adding Scan URL to Database")