📞 (718) 971-4523  ·  (718) 856-6548  |  law@glennrhodge.com  |  By Appointment Only

Brooklyn, New York · Established 1986

Legal Counsel for a
Complex World

General law, taxation, and cutting-edge cybersecurity legal services — protecting your rights, your business, and your digital assets.

38+
Years in Practice
3
Core Practice Areas
2
Brooklyn Locations
GRH
Glenn R. Hodge, Esq. Founding Attorney

Glenn R. Hodge, Esq.

Founding Attorney & Principal Counsel

Glenn R. Hodge is a seasoned attorney with a distinguished career spanning multiple decades of legal practice. Having been in practice since 1986, Mr. Hodge has built a reputation for delivering rigorous, results-driven legal counsel to individuals and businesses throughout the New York metropolitan area.

Mr. Hodge holds a Juris Doctor and is admitted to practice in New York. His broad expertise encompasses general civil and business matters, taxation, and the rapidly evolving intersection of law and technology — making him uniquely positioned to serve clients navigating today's complex legal and digital landscape.

At the Law Office of Glenn R. Hodge and Associates, clients benefit from personalized attention, strategic legal thinking, and a deep commitment to protecting their rights and interests at every stage.

⚖️
Admitted to Practice State of New York
📅
In Practice Since 1986 — Over 38 Years of Legal Experience
🏛️
Education Juris Doctor (J.D.)

Our Practice Areas

We provide comprehensive legal services across three core areas, combining decades of experience with forward-looking expertise.

⚖️

General Law

Comprehensive legal counsel for individuals and businesses, including civil matters, contracts, dispute resolution, and general business law. We provide steady, reliable guidance across a broad spectrum of legal needs.

📊

Tax Law

Strategic tax planning and compliance for individuals, businesses, and entrepreneurs. From IRS matters to state and local tax issues, we work to protect your financial interests and minimize exposure.

🔒

IT & Cybersecurity Law

Legal expertise at the cutting edge of technology — covering data breaches, IP protection, internet security, VPN compliance, cyber intrusions, hack prevention, AI regulation, and reverse engineering matters.

Meet the Associates

Our firm is supported by specialized professionals who bring technical depth and legal precision to every engagement.

Glenn R. Hodge, Esq.

Founding Attorney & Principal Counsel

With over 38 years of legal practice, Mr. Hodge leads the firm's legal strategy across general law, taxation, and cybersecurity matters. His depth of experience and commitment to clients defines the firm's standard of excellence.

Dr. Abdo A. Zandani

Paralegal  ·  IT & Cybersecurity Specialist

Dr. Zandani serves the firm in a dual capacity, combining doctoral-level technical expertise with paralegal support to provide comprehensive assistance across the firm's practice areas.

Roles & Responsibilities
Paralegal
  • Legal research and case preparation
  • Drafting and reviewing legal documents
  • Client intake and file management
  • Court filing coordination
  • Document organization and discovery support
  • Communicating with clients and courts under attorney supervision
IT & Cybersecurity Specialist
  • Digital forensics and evidence analysis
  • Cybersecurity advisory for legal matters
  • Network intrusion and breach assessment
  • AI systems review and compliance
  • VPN and data protection consultation
  • Reverse engineering and technical expert support

Schedule a Consultation

Office Locations & Contact

📍
Location 1 — Parkside 216 Parkside Avenue
Brooklyn, NY 11226
📍
Location 2 — Bedford 302 Bedford Avenue, Suite 93
Brooklyn, NY 11249
✉️
🕐
Hours By Appointment Only

Send an Inquiry

✅ Your inquiry has been sent. We will be in touch shortly.
❌ There was an error sending your message. Please try again or email us directly.

This form does not create an attorney-client relationship. Do not include confidential information until a formal engagement is established.

(e) { e.preventDefault(); const btn = document.getElementById('submitBtn'); const success = document.getElementById('form-success'); const error = document.getElementById('form-error'); success.style.display = 'none'; error.style.display = 'none'; const data = { firstName: document.getElementById('fname').value, lastName: document.getElementById('lname').value, email: document.getElementById('email').value, phone: document.getElementById('phone').value, matter: document.getElementById('matter').value, message: document.getElementById('message').value, }; if (!data.firstName || !data.email || !data.message) { error.textContent = '❌ Please fill in all required fields.'; error.style.display = 'block'; return; } btn.textContent = 'Sending…'; btn.disabled = true; try { // Replace YOUR_FORM_ID with your actual Formspree form ID const res = await fetch('https://formspree.io/f/xvzvydqz', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify(data) }); if (res.ok) { success.style.display = 'block'; document.getElementById('fname').value = ''; document.getElementById('lname').value = ''; document.getElementById('email').value = ''; document.getElementById('phone').value = ''; document.getElementById('matter').value = ''; document.getElementById('message').value = ''; } else { throw new Error('Server error'); } } catch { error.style.display = 'block'; } finally { btn.textContent = 'Send Inquiry'; btn.disabled = false; } }