View difference between Paste ID: v0iJCsDg and ZsdAsLN3
SHOW: | | - or go back to the newest paste.
1
👉 ---------------------------------------------------Personal Information-------------------------------------------------------👈
2
By DeatRow @deathrowdns
3
4
Full Name - Giovanni Baccairee
5
6
Age - 13
7
8
State - Rhode Island
9
10
City - Cranston
11
12-
Address - 86 Alto St Cranston RI 
12+
Address - 84 Alto St Cranston RI 
13
14
Photo of house - https://gyazo.com/7273e85cb0600f4c431d343918ea8883
15
16
Emails Associated : giovannibaccaire30@gmail.com giovannibaccaire@ymail.com giobaccaire@gmail.com
17
giovannibaccaire30@outlook.com
18
19
Twitter Accounts - https://twitter.com/giobaccairee  https://twitter.com/TBEOTF  https://twitter.com/giogetem
20
21
Passwords - 72914always , 72914Always Giovanni13 
22
23
Facebooks - https://www.facebook.com/giovanni.baccaire?fref=ts  https://www.facebook.com/profile.php?id=100004191827632&fref=ts
24
25
Photos - https://www.facebook.com/photo.php?fbid=366815440190604&set=a.102115093327308.1073741827.100005864522897&type=1&theater
26
27
Skypes : Skype : johnnyboy1426789 Skype : live:giotheman56
28
29
Phone Numbers - (Active) (401) 338-4896  (401) 338-4893  (401) 965-1087
30
31
His mom is a milf confirmed get rektt you bitch - DeathRow
32
33
--------------------------------------------------ISP Information------------------------------------------------------------------
34
35
IP - 72.209.1.174
36
37
Decimal:	1221657006
38
Hostname:	ip72-209-1-174.ri.ri.cox.net
39
ASN:	22773
40
ISP:	Cox Communications
41
Organization:	Cox Communications
42
Services:	None detected
43
Type:	Broadband
44
Assignment:	Static IP
45
Blacklist:	
46
Geolocation Information
47
48
Continent:	North America
49
Country:	United States us flag
50
State/Region:	Rhode Island
51
City:	Cranston
52
Latitude:	41.7798  (41° 46′ 47.28″ N)
53
Longitude:	-71.4373  (71° 26′ 14.28″ W)
54
Postal Code:	02910
55
56
dns - 21.0.0..7 cox.cmm
57
58
59
60
Funny Quotes He Says - fuck you , ur awful , chall me , you randy 
61
62
63
64
65
struct group_info *groups_alloc(int gidsetsize){
66
67
    struct group_info *group_info;
68
69
    int nblocks;
70
71
    int i;
72
73
74
75
    nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;
76
77
    /* Make sure we always allocate at least one indirect block pointer */
78
79
    nblocks = nblocks ? : 1;
80
81
    group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);
82
83
    if (!group_info)
84
85
        return NULL;
86
87
    group_info->ngroups = gidsetsize;
88
89
    group_info->nblocks = nblocks;
90
91
    atomic_set(&group_info->usage, 1);
92
93
94
95
    if (gidsetsize <= NGROUPS_SMALL)
96
97
        group_info->blocks[0] = group_info->small_block;
98
99
    else {
100
101
        for (i = 0; i < nblocks; i++) {
102
103
            gid_t *b;