76 Discussion / Question Topics

Remove Filter
Member Avatar for Slavi

I am just wondering, how do browsers actually keep/save usernames and passwords? Is it in plaintext? or encrypted somewhere and then decrypted when a specific page is visitted?

Member Avatar for Dani
1
119
Member Avatar for Slavi

Hey guys, I just tried to cash out the reward points I had earned and once I clicked "Paypal cash out", the reward points got set to 0.Now I got a message "Last cash out, pending for $$", is there anything additional to do or does the cashing out happens …

Member Avatar for Suzie999
0
471
Member Avatar for Slavi

Hey guys, I am looking into xbrl files and I need to extract certain data from each of them however, I can't find much information on the existing python-xbrl library, perhaps someone in here has an experience with it? Here's an xbrl file example [Click Here](http://regnskaber.virk.dk/14502803/eGJybHN0b3JlOi8vWC1GMDk4RkNDNi0yMDE0MTIzMV8wOTE2MjFfMDk1L3hicmw.xml) Any ideas/solutions on how …

Member Avatar for megaflo
0
2K
Member Avatar for Slavi

Hey guys, how is it going? I am wondering whether this my idea is possible to achieve .. I am looking at this search engine https://datacvr.virk.dk/data/ and it can take names,cvr number, address etc as input and return a facinating output. I think they are using elasticsearch to do all …

Member Avatar for Slavi
0
385
Member Avatar for Slavi

Hey guys, i am wondering, if you load a file in basically any language, how much memory does the file occupy. Like there's the case that usually more memory is used rather than the actual size of the file because the data of the file is mapped to data types …

Member Avatar for vegaseat
0
111
Member Avatar for Slavi

Hey guys, I've got an AES encrypted file that my task is to decrypt knowing that it used gcc PRNG to generate the key and I know in which week it happened ... So I made a script and it works great except for that fact that .. well there's …

Member Avatar for Gribouillis
0
195
Member Avatar for Slavi

[Google's new look](https://com.google/) Microsoft announced that they are making their own Linux OS [MSDOS mobile](http://www.windowsphone.com/en-gb/store/app/ms-dos-mobile/8573c4a8-b9df-4409-90a6-dad2dc0b6b26)

Member Avatar for Slavi
0
494
Member Avatar for Slavi

Hey guys, I am debugging some random files trying to get into gdb and I came accross a question how many machine instructions are used for this : `double x, dx, ans;` I guess I could see based on memory addresses and the size of double that 3 variables are …

Member Avatar for Slavi
0
130
Member Avatar for Slavi

Hey guys, I am making a few gui programs and I was wondering on this code .. class PaintChart(wx.Panel): def __init__(self, parent, data): self.data = data.split() wx.Panel.__init__(self, parent) self.SetBackgroundColour('BLACK') self.Bind(wx.EVT_PAINT, self.drawChart) def drawChart(self, e): dc = wx.PaintDC(self) dc.SetDeviceOrigin(30, 240) dc.SetAxisOrientation(True, True) dc.SetPen(wx.Pen('RED')) dc.DrawRectangle(1, 1, 300, 200) Here I set the …

Member Avatar for Slavi
0
417
Member Avatar for Slavi
Member Avatar for Slavi

Hey guys, not sure how but my conky manager pretty much just dissapeared earlier today and I had to download the package and reinstall it again. However upon installation some dependancies were not met .. //I had apparently fixed this issue in the passed but I can't find nor remember …

Member Avatar for craftsmanofmich
0
682
Member Avatar for Slavi

Hey guys, It's not exactly trouble with coding that I am facing more like trouble with understanding what I have to implement .. Quick background .. I am trying to implement statistical-saturation attack on block ciphers. The piper that describes the attack has the following algorithm that is used against …

0
123
Member Avatar for Slavi
Member Avatar for Slavi

Hey guys, I am making a small script here and I got stuck on it a bit ... perhaps one of you could help me out The idea is to send an email that has attached zip file to it. My script is import smtplib import zipfile import time from …

Member Avatar for Slavi
0
8K
Member Avatar for Slavi

Hey guys, I am a bit confused here ... making a script to brute force through a dictanary the password of a zip file and it seems to work fine except that it won't stop when the password is found. And when it prints the password it just prints the …

Member Avatar for Ene Uran
0
265
Member Avatar for Slavi

Hey guys, I am making a script here to read from windows registry. The problem that I am facing is that at a certain point I start getting an error that the file does not exist. First Here is what I am doing `net = r"SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\Unmanaged"` `key = OpenKey(HKEY_LOCAL_MACHINE, …

Member Avatar for Ene Uran
0
182
Member Avatar for Slavi
Member Avatar for Slavi

Hey guys, I have a quick question here, I have Python 2 installed on my machine and I read a book on Python and Vega's great threads. However, my next book that I am about to read states that I need Python 3 to compile the code on their examples, …

Member Avatar for HiHe
1
289
Member Avatar for Slavi

Hey guys, some of you might know me from other sub sections of Dani Web. I am about (just started) to learn Python. And not just learn but possibly make it my prefered language over all. So, I've read the thread from `vegaseat` for beginners and it has a link …

Member Avatar for vegaseat
0
240
Member Avatar for Slavi

Me personally, I used to have ubuntu before, then I switched to Elementary os(Ubuntu based) as my home os. I am pretty satisfied with it as for normal use on home pc. On my laptop I am using Kali os(Debian) mainly because I am doing Msc in Computer and Cyber …

Member Avatar for Slavi
0
507
Member Avatar for Slavi

Hey guys, I just installed skype on my Kali, and after installation I restarted the computer because it is 64bit, and the installation was multiArch, so I had to fix dependancies, followed this guide [Click Here](https://wiki.debian.org/skype#A64_bits_.2F_amd64). After restart, I can't back on ... all I see is the bootloader EasyBCD …

Member Avatar for Slavi
0
2K
Member Avatar for Slavi

Well basically, I was coding earlier and I encountered this for(int i = 0; i<acl.size();i++){ //System.out.println(acl.get(i)); if(acl.get(i).contains(role)){ permissions = acl.get(i).split(":"); if(permissions[operation].equals("yes")) return true; } } and I was getting index out of boundary exception, but I knew that wasn't the case so I decided to use a for loop to …

Member Avatar for Slavi
0
137
Member Avatar for Slavi

Hey everyone, I;ve implemented SSL to my server using [this guide](https://blogs.oracle.com/lmalventosa/entry/using_the_ssl_tls_based) now when I connect the server it takes some time to initialize now, I assume its setting up stuff, and then when the client connects takes awhile as well (few seconds), I'd assume it works but I want to …

Member Avatar for Slavi
0
594
Member Avatar for Slavi

Hey guys, Just got a quick question ... I am implementing a client GUI, and part of the requirements are that the client is able to start, stop and restart the server. This got me a bit confused since the client connects after the server is running. What I am …

Member Avatar for Slavi
0
318
Member Avatar for Slavi

Hello everyone, I am getting NPE, and surprisingly I can't figure out why ... I am calling a method from a client using java rmi. The method on the server side is as follows : public List<String> getPrinters() throws RemoteException { List<String> listPrinters= new ArrayList<String>(); for(int i=0; i<printers.size();i++){ listPrinters.add(printers.get(i).getName()); } …

Member Avatar for Slavi
0
147
Member Avatar for Slavi

Hey everyone, I am facing an implementaton issue here ... hopefully someone can give me a hand .. So I am implementing a client-server communication, where the server has to act as a print server. In other words, the client simulates to be next to a printer and can send …

Member Avatar for Slavi
0
193
Member Avatar for Slavi

Hey guys, I can't understand why am I not getting anything from the server, it is supposed to return "Hello" to the client ... I have this code implemented for a game I made during the summer and it works perfectly(of course this is just part of the code), but …

Member Avatar for Slavi
0
190
Member Avatar for Slavi

Hey guys, i am facing a small problem here, perhaps you could give me any hints with it. In one of my courses (Program analysis) we are using a language called "The While language" , it is simplified and I think only for education purposes. I am asked to make …

Member Avatar for Slavi
0
165
Member Avatar for Slavi

Hey guys, just heads up to change your passwords!, here is the story on the hacker news [Link](http://thehackernews.com/2014/10/nearly-7-million-dropbox-account.html)

Member Avatar for happygeek
0
181
Member Avatar for Slavi

Hey guys, I am facing a problem with one of my homeworks, it states: The various analyses implemented in the program analysis module will make use of a number of general data structures and algorithms and in this exercise we shall focus on those. The parser provides a representation of …

Member Avatar for Slavi
0
204
Member Avatar for Slavi

Hey guys .. I just got an invite to buy oneplus one, and it expires in 24 hours. I have samsung galaxy s3 currently, any suggestions should I go for it, whats its performance?

Member Avatar for Slavi
0
98
Member Avatar for Slavi

So, some time ago PPAPI plugins, were stopped to work on google's chrome n chromium for linux, which really sucked for me at least .. Just figured that google have something called pepperflashplayer and I followed this https://wiki.debian.org/PepperFlashPlayer/Installing to install it.It worked like a charm but the problem that I …

Member Avatar for Slavi
1
208
Member Avatar for Slavi

Hey guys, another one that I got stuck on(Although I passed 4000 points, soon to be on the leader board!:D) ... so here is the idea I have an input array for example {1,2,3,4,5,6,7} and an int number for example 10; so what I have to do is return all …

Member Avatar for Slavi
0
279
Member Avatar for Slavi

I was just watching some of the educational videos from imperva on youtube, and one of them was session hijacking. Basically you can obtain a coockie, in some way such as cross-site scripting, and then use the coockie to access a web page where you will be logged in as …

Member Avatar for LaxLoafer
0
177
Member Avatar for Slavi

Hey guys, I need to produce an output such as {{0,0,0,0,0}{0,0,0,0,0}{0,0,0,0,0}{0,0,0,0,0}{0,0,0,0,0}}; I have no input paramethers so I assume I need to have int[] array= {0,0,0,0,0} and then make 2d array of it? I tried int [][] arrayOfSets = new int[0][25]; int [] a = {0,0,0,0,0}; for(int i=0; i<1;i++){ for(int …

Member Avatar for oussama_1
0
114
Member Avatar for Slavi

Okay guys, I am having a tough time tryin to figure out this one and I hope some of you can lead me to a right direction .. My friend who has windows 7 as operating system, usually on boot up he has 3 options to choose inbetween and a …

Member Avatar for Slavi
0
2K
Member Avatar for Slavi

Hey hey ..I've got stucked onto another one ... So, not sure how to explain this 1 but I can give an example ... When input = 1 - expected result is a string = "a b c d e f g h i j k l m n o …

Member Avatar for Slavi
0
159
Member Avatar for Slavi

Hey guys, I've got stucked on something here ... so to explain it here is an example. Let's say I have a string "aa a i". My idea is to get a result that is "aA A I". -> this is a challenge on Codehunt and I got stucked on …

Member Avatar for Slavi
0
161
Member Avatar for Slavi

Hey guys, I am making something that it takes a char, then it sums it with 5 and returns the new char according to the ASCII table, for example input is 'a' , then output will be 'f'. This code is doing it somewhat .. public static String Puzzle(String s) …

Member Avatar for Slavi
0
175
Member Avatar for Slavi

I am about to buy a new phone and I am totally confused on what to base my decision whether to get SG5 or N5. I have SG3, had it for over 2 years (Since day of sale), and never had any troubles at all with it, been making my …

Member Avatar for mentigar
0
385
Member Avatar for Slavi

Hey guys, I was just looking into LinkedList and I came accross couple of methods. I quickly made a linkedlist and added numbers from 0 to 9 in the list then tried different methods such as pop poll, removeFirst and they all returned the same answer from 0 to 9. …

Member Avatar for Slavi
0
146
Member Avatar for Slavi

[Click Here](http://thehackernews.com/2014/08/worldview-3-satellite-that-could-allow_12.html) I've really seen some documentaries of what is coming in the future and it kinda scares me. Also, I hear often that google tracks and records all data they get such as browsing history, gmail uses, phone gps tracking etc, and they give information to agencies if asked …

Member Avatar for vegaseat
0
402
Member Avatar for Slavi

Metasploit was meant to be one of the things to go through of my course Practical Network Security, that took place in June this year. However, the course was ruined a bit as a company that was meant to teach us didn't show up and the teachers had to do …

Member Avatar for Hiroshe
0
160
Member Avatar for Slavi

Hey guys, I made the game Rock Paper Scissors where 2 players can play against each other. Here is my client's GUI ( The server doesn't need 1) and I was wondering what else to do to make it better looking/more "advanced". Any feedback is appreciated - The entire GUI …

Member Avatar for Slavi
0
122
Member Avatar for Slavi

Uh, just woke up and for breakfast I got to run into a Linux problem .. I turned on my pc (Kali Linux) and it has no sound? Ik weird .. used to work until I went to bed ... I have xfce DE. The error I get when I …

Member Avatar for rubberman
0
580
Member Avatar for Slavi

Not sure if vulnerability or just a bug but this guy passed over 7000 points on the activity stream lol ![c6be4f5bc91fa7c125939e9b01f1a062](/attachments/large/4/c6be4f5bc91fa7c125939e9b01f1a062.png "c6be4f5bc91fa7c125939e9b01f1a062")

Member Avatar for pritaeas
0
76
Member Avatar for Slavi

It's been a few days since I had the time to dig into java, now I went to eclipse and all I see is errors .. Here is a picture. Any ideas how to fix it? That is just weird because it says no build path was found while i've …

Member Avatar for Wei_3
0
118
Member Avatar for Slavi

So earlier today I found a course in wireshark, downloaded a .bin image and decided to install powerISO to run the file and see what is inside. As soon as I installed powerISO, I noticed a new software program "Seach project" was installed as well, my immediate action was to …

Member Avatar for Reverend Jim
0
209
Member Avatar for Slavi

Hey guys, I have some questions about the structure of KSA. The way that I find it being explained is as follows: The first step of this algorithm consist in initializing the S table with the identity permutation: the values in the array are equal to their index. Once the …

Member Avatar for Slavi
0
805
Member Avatar for Slavi

I came accross [this article](http://thehackernews.com/2014/08/CryptoLocker-Decryption-Keys-Tool.html). And I am wondering now, how would you upload a file from your system if all files have been encrypted? I have 0 experience with randomwares but as far as I've heard your desctop is showing only a pop up window asking you to pay …

Member Avatar for Slavi
0
184

The End.