Whitelist, goodware, database of hashes


 
Thread Tools Search this Thread
Special Forums Cybersecurity Whitelist, goodware, database of hashes
# 1  
Old 03-14-2013
Whitelist, goodware, database of hashes

I have found this excellent site: NSRL Downloads
(sorry if it was already mentioned)

there are Solaris and Linux files there too.
its all in a text file, over 11Gb large.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Hardware

HP notebook PC wifi card whitelist problem

I have hp dv6 and dv7 notebook pcs on which I want to upgrade the wifi cards but when I install the new cards and boot them, the they won't even boot to the bios and they both give me the same error: "104-Unsupported wireless network device detected. System Halted. Remove device and restart." When... (1 Reply)
Discussion started by: milhan
1 Replies

2. Shell Programming and Scripting

Using "whitelist" from a file to remove entries

Dear all, what I need to do is extract an entries list from a file and remove some entries based on a white list present on other file, then output into result.txt file. Example: source.txt: 12345 text1 text2 text3 text4 123 text1 text2 text3 text4 678 text1 text2 text3 text4 987 text1... (8 Replies)
Discussion started by: Lord Spectre
8 Replies

3. Shell Programming and Scripting

Perl : array of hashes help

Hi, I have array of hashes and each key has array like below. @array1 = ( { 'url' => , 'bill' => }, { 'url' => , 'bill' => }, { 'url' => , ... (0 Replies)
Discussion started by: ragilla
0 Replies

4. Shell Programming and Scripting

Creating Hashes of Hashes of Array

Hi folks, I have a structure as mentioned below in a configuration file. <Component> Comp1: { item1:data,someUniqueAttribute; item2:data,someUniqueAttribute, } Comp2: { item3:data,someUniqueAttribute; ... (1 Reply)
Discussion started by: ckv84
1 Replies

5. Shell Programming and Scripting

list of hashes

Hello everyone, I was wondering if someone can help me with this problem: @LoHashes = ({"a"=>1,"b"=>2,"c"=>3,"d"=>4}, {"a"=>5,"b"=>6,"c"=>7}); @LoHashes = create_list(\&LoHashes); sub create_list { foreach $hash(@LoHashes) { foreach (sort keys... (2 Replies)
Discussion started by: new bie
2 Replies

6. Shell Programming and Scripting

perl hash of hashes from database

hi there, I have some database output that looks like this SELECT nic_name,nic_duplex,nic_speed,nic_ip FROM network_table WHERE hostname = "server1" result is this (ive delimited with a pipe for ease of reading) bge0|full|1000|10.32.100.1 bge1|full|1000|11.12.101.7 ... (1 Reply)
Discussion started by: hcclnoodles
1 Replies

7. Shell Programming and Scripting

Hashes help in Perl

Hi, I am stuck at this problem where part of my code would store all the websites that has been accessed by a user. I pull these values from a log file. I want to create a HASH of HASHES ? (Please correct me if this is not the right approach) where I would store all the hits to website with... (4 Replies)
Discussion started by: Dabheeruz
4 Replies

8. UNIX for Dummies Questions & Answers

Name in hashes(####)???

Hey frens someone pls temme what i need to do so that after I logged into my unix terminal i should get my name written in hashes(i.e ###) Hope someone ll help me out.... (2 Replies)
Discussion started by: smarty86
2 Replies

9. Shell Programming and Scripting

Perl Regular Expression - Whitelist

I am creating a whitelist for User Input Validation. Here is a code snippet that allows alphanumeric and forward slash (/). if ( $variable =~ /^*$/ ) #allow alphanumeric and fwd slash { $returnValue = 'good data'; } ... (3 Replies)
Discussion started by: mh53j_fe
3 Replies

10. Shell Programming and Scripting

How To Sort Array of Hashes ??

Some one plz help me how to sort an array of hashes ..... for e.g i have an array as @AoH = ( { ques => 10, marks => 32, }, { ques => 32, marks => 22, }, { ques => 2, marks => 41, }, ); now i want to sort this array with increasing value of "ques" ..... plz... (3 Replies)
Discussion started by: coolguyshail
3 Replies
Login or Register to Ask a Question
PG_LO_OPEN(3)															     PG_LO_OPEN(3)

pg_lo_open - Open a large object

SYNOPSIS
resource pg_lo_open (resource $connection, int $oid, string $mode) DESCRIPTION
pg_lo_open(3) opens a large object in the database and returns large object resource so that it can be manipulated. Warning Do not close the database connection before closing the large object resource. To use the large object interface, it is necessary to enclose it within a transaction block. Note This function used to be called pg_loopen(3). PARAMETERS
o $connection - PostgreSQL database connection resource. When $connection is not present, the default connection is used. The default connection is the last connection made by pg_connect(3) or pg_pconnect(3). o $oid - The $OID of the large object in the database. o $mode - Can be either "r" for read-only, "w" for write only or "rw" for read and write. RETURN VALUES
A large object resource or FALSE on error. EXAMPLES
Example #1 pg_lo_open(3) example <?php $database = pg_connect("dbname=jacarta"); pg_query($database, "begin"); $oid = pg_lo_create($database); echo "$oid "; $handle = pg_lo_open($database, $oid, "w"); echo "$handle "; pg_lo_write($handle, "large object data"); pg_lo_close($handle); pg_query($database, "commit"); ?> SEE ALSO
pg_lo_close(3), pg_lo_create(3). PHP Documentation Group PG_LO_OPEN(3)