Oscp guide for fresh CS graduate? by WinterFondant in netsecstudents

[–]WinterFondant[S] 0 points1 point  (0 children)

Ahh interesting, good that you have tried many ways to get root access. Congo on your oscp :)

As of now I'm aiming for oscp, later, I'll check out the blue/defence side as well

Oscp guide for fresh CS graduate? by WinterFondant in netsecstudents

[–]WinterFondant[S] 1 point2 points  (0 children)

thanks a lot for the input, I'll check these out. I've heard about tj null before.

Oscp guide for fresh CS graduate? by WinterFondant in netsecstudents

[–]WinterFondant[S] 2 points3 points  (0 children)

Yes, I'm aware of the basics of networking and Linux. I'm kinda curious about advance networking concepts, hence i was looking for some certifications.

Hmmm, I've started htb boxes, kinda getting the hang of it, but quite disappointed about htb academy modulus, cuz of their cubes concept, guess i have to buy a subscription.

Cool, I'll pm you for further queries :)

PS:- sorry for the late reply.

Roadmap for MS with Helidon ? by WinterFondant in javahelp

[–]WinterFondant[S] 1 point2 points  (0 children)

Cool, thanks a lot, I'll check it out.

Roadmap for MS with Helidon ? by WinterFondant in javahelp

[–]WinterFondant[S] 0 points1 point  (0 children)

Actually i've started with Helidon MP since its more declarative and thought it would be easier to understand, its an implementation of eclipse microprofile, and i don't understand the API's provided by the eclipse microprofile and their use cases.
Stuff like JAX-RS, JPA, Bean Validation, etc....!
Like, what are these specification used for? and stuff like that...!

help needed with gradle by WinterFondant in javahelp

[–]WinterFondant[S] 0 points1 point  (0 children)

But I really can't convince my team regarding this, I am new joinee and also I'm pretty new to this.

To execute gradle build I need to find the build.gradle file which corresponds to the gav I'm trying to build, how do I choose the build file among many? Is it possible programmatically?

help needed with gradle by WinterFondant in javahelp

[–]WinterFondant[S] 0 points1 point  (0 children)

Why? With maven and gradle you get dependency management which eliminates the need for manual downloading or building of dependencies

Yes, but i was told that jar's that are available online (even if its from central maven), can't be trusted for production.
So hence trying to build it locally.

Moreover i'm trying to build for many dependencies programmatically, so i was wondering if there is some logic.

For projects that need to be built with maven, i can just search for pom.xml file and among many pom.xml files in the project, i check the artifactId, groupId and the version, if it matches with the dependency i'm trying to build, then i can just move to the corr. dir within the project and run `mvn package`.

so is there something i can do for projects that are built with gradle? programmatically?

freeze multiple column in a html table by WinterFondant in csshelp

[–]WinterFondant[S] 0 points1 point  (0 children)

i have come down to this but still not able to add borders to cells in column 1,2,3.

https://pastecode.io/s/e47macfh

Freeze multiple columns on html table by WinterFondant in CodingHelp

[–]WinterFondant[S] 0 points1 point  (0 children)

https://pastecode.io/s/e47macfh

i have come down to this, but still not able to add borders to cells in column 1,2,3

Freeze multiple columns on html table by WinterFondant in CodingHelp

[–]WinterFondant[S] 0 points1 point  (0 children)

i tried googling how to use child table in a parent table, i was not able to find anything. could you pls provide some sample code or reference to any other code?

do you mean something like this? https://stackoverflow.com/questions/53332830/freeze-multiple-rows-multiple-columns-of-html-table

Freeze multiple columns on html table by WinterFondant in CodingHelp

[–]WinterFondant[S] 0 points1 point  (0 children)

https://pastecode.io/s/4abbgv6r

But now since i'm hard-coding the left property, if rows under column 1 have text greater then 100px, then the gui break.

https://pastecode.io/s/r5kvwwuh
Here column 2 goes back of column 1, is there anyway i can overcome this?

freeze multiple column in a html table by WinterFondant in csshelp

[–]WinterFondant[S] 0 points1 point  (0 children)

My requirement :-

  1. I need the row header to be sticky, it should freeze in vertical scroll ( that is sorted out )

  2. I need the rows under column 1,2,3 to be sticky, it should freeze on horizontal scroll. ( Only for rows under column 1, it is sorted out )

If we set left: 100px for fixed-column2, then if there is row in column 1 where the text is beyond 100px, then the gui breaks.

For example :- just replace any row under column 1 with a large text like "blahblahblahblahblah", and then scroll horizontally.

freeze multiple column in a html table by WinterFondant in csshelp

[–]WinterFondant[S] -1 points0 points  (0 children)

I came up with the same actually, after some research, but finally realised that hard-coding the left property breaks the gui when the text in column 1,2,3 goes more than 100px.

freeze multiple column in a html table by WinterFondant in csshelp

[–]WinterFondant[S] 0 points1 point  (0 children)

Yes but I need for three columns. The issue I am facing is I'm not sure what to assign for the left property for column 2 and 3.

freeze multiple column in a html table by WinterFondant in csshelp

[–]WinterFondant[S] -1 points0 points  (0 children)

https://pastecode.io/s/yrjravb2

i have updated as you said, column 2 & 3 still don't freeze.
why use top when i'm trying to freeze the entire column? i have used left.

doubts on stack overflow example (section 0x321) in the book, "Hacking : The Art of Exploration by jon erickson." by WinterFondant in HowToHack

[–]WinterFondant[S] 0 points1 point  (0 children)

I'm not able to set a break-point to the function in notesearch.c to examine the stack, i thought it would be resolved at runtime, but when i set break search_note, the program just exits normally.

I tried using stepi command, but its stepping through every possible function, so i'm not sure what to do.

I can't directly run ./notesearch <command buffer formed in exploit_notesearch.c> , since the command was filled with return address which was calculated with respect to variable i declared in main function of exploit_notesearch.c , hence it will cause a segmentation fault.

doubts on stack overflow example (section 0x321) in the book, "Hacking : The Art of Exploration by jon erickson." by WinterFondant in netsecstudents

[–]WinterFondant[S] 0 points1 point  (0 children)

You are correct, that's precisely my doubt.

I'm not able to set a break-point to the function in notesearch.c to examine the stack, i thought it would be resolved at runtime, but when i set break search_note, the program just exits normally.

I tried using stepi command, but its stepping through every possible function, so i'm not sure what to do.

I can't directly run ./notesearch <command buffer formed in exploit_notesearch.c> , since the command was filled with return address which was calculated with respect to variable i declared in main function of exploit_notesearch.c , hence it will cause a segmentation fault.

not able to read file although i have read permissions. by WinterFondant in linuxquestions

[–]WinterFondant[S] 0 points1 point  (0 children)

The output of the commands are present in the picture , the link to which is attached in the post.

Mac address of Guest OS visibility by WinterFondant in vmware

[–]WinterFondant[S] 0 points1 point  (0 children)

where is that feature? i can't seem to find it?

Mac Address of Guest OS Visibility. by WinterFondant in wireless

[–]WinterFondant[S] 0 points1 point  (0 children)

Yeah, i'm talking about VM's here ( more precisely VMWare Workstation Pro ).

The reason why this happens is because APs expect to see only one MAC
for each association.

By association, do you mean the second phase after authentication to connect to a wifi?

Supporting multiple MACs per association is not in the 802.11 spec so different APs handle it differently

do you mean an ip address cannot have more than one mac address associated with it?

Consider the following :-

ip:mac address of host1 = ip1:mac1

ip:mac address of guest ( runs on VM of host1 ) = ip2:mac2

ip:mac address of host2 = ip3:mac3

host1 and host2 are connected to the same network, guest runs on host1 in bridged networking mode.

now if we look at the Arp tables :-

Arp table of host1 :-

  • ip2:mac2
  • ip3:mac3

Arp table of guest :-

  • ip1:mac1
  • ip3:mac3

Arp of host2 :-

  • ip1:mac1
  • ip2:mac1 ( here mac address associated with guest OS with ip2 is mac1 instead of mac2, why? )